budibase/hosting/docker-compose.dev.yaml

42 lines
1.1 KiB
YAML
Raw Normal View History

2021-03-22 16:43:26 +01:00
version: "3"
# optional ports are specified throughout for more advanced use cases.
services:
dependencies:
container_name: budi-dependencies
restart: on-failure
2023-01-23 11:45:59 +01:00
image: budibase/dependencies
2021-03-22 16:43:26 +01:00
ports:
- "${MINIO_PORT}:9000"
- "9001:9001"
- "${COUCH_DB_PORT}:5984"
- "${REDIS_PORT}:6379"
2021-03-22 16:43:26 +01:00
environment:
MINIO_ACCESS_KEY: ${MINIO_ACCESS_KEY}
MINIO_SECRET_KEY: ${MINIO_SECRET_KEY}
COUCHDB_PASSWORD: ${COUCH_DB_PASSWORD}
COUCHDB_USER: ${COUCH_DB_USER}
REDIS_PASSWORD: ${REDIS_PASSWORD}
volumes:
- dev_data:/data
2021-03-22 16:43:26 +01:00
proxy-service:
2022-01-11 20:33:22 +01:00
container_name: budi-nginx-dev
restart: on-failure
image: budibase/proxy:latest
2021-03-22 16:43:26 +01:00
volumes:
- ./nginx.dev.conf:/etc/nginx/templates/nginx.conf.template
- ./proxy/error.html:/usr/share/nginx/html/error.html
2021-03-22 16:43:26 +01:00
ports:
- "${MAIN_PORT}:10000"
depends_on:
- dependencies
2022-01-11 20:33:22 +01:00
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
- PROXY_ADDRESS=host.docker.internal
2021-03-22 16:43:26 +01:00
volumes:
dev_data:
driver: local