2021-03-22 16:43:26 +01:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
# optional ports are specified throughout for more advanced use cases.
|
|
|
|
|
|
|
|
services:
|
2023-01-23 16:09:13 +01:00
|
|
|
dependencies:
|
|
|
|
container_name: budi-dependencies
|
2022-03-15 12:17:32 +01:00
|
|
|
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"
|
2022-06-30 21:26:49 +02:00
|
|
|
- "9001:9001"
|
2022-12-13 18:14:08 +01:00
|
|
|
- "${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}
|
2022-12-13 18:14:08 +01:00
|
|
|
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
|
2022-03-15 12:17:32 +01:00
|
|
|
restart: on-failure
|
2022-12-21 11:58:39 +01:00
|
|
|
image: budibase/proxy:latest
|
2021-03-22 16:43:26 +01:00
|
|
|
volumes:
|
2022-12-21 11:58:39 +01:00
|
|
|
- ./nginx.dev.conf:/etc/nginx/templates/nginx.conf.template
|
2022-03-31 16:58:45 +02:00
|
|
|
- ./proxy/error.html:/usr/share/nginx/html/error.html
|
2021-03-22 16:43:26 +01:00
|
|
|
ports:
|
|
|
|
- "${MAIN_PORT}:10000"
|
|
|
|
depends_on:
|
2023-01-23 16:09:13 +01:00
|
|
|
- dependencies
|
2022-01-11 20:33:22 +01:00
|
|
|
extra_hosts:
|
|
|
|
- "host.docker.internal:host-gateway"
|
2022-12-20 17:28:13 +01:00
|
|
|
environment:
|
2022-12-21 11:58:39 +01:00
|
|
|
- PROXY_ADDRESS=host.docker.internal
|
2021-03-22 16:43:26 +01:00
|
|
|
|
|
|
|
volumes:
|
2022-12-13 18:14:08 +01:00
|
|
|
dev_data:
|
|
|
|
driver: local
|