This commit adds a new file `docker-compose.override.yml` to the `deploy` directory. The file contains configuration for the Traefik proxy and services used for local development. The configuration includes: - Enabling Docker in Traefik to read labels from Docker services - Adding a constraint to only use services with a specific label for this stack - Disabling the exposure of all Docker services by default - Enabling the access log and Traefik log - Enabling the Traefik Dashboard and API in insecure mode for local development The file also includes configuration for the following services: - `proxy`: Configured to listen on ports 80 and 8090, with labels for routing and load balancing - `pgadmin`: Configured to listen on port 5050 - `flower`: Configured to listen on port 5555 - `backend`: Configured with labels for routing and load balancing on paths `/api/v1`, `/docs`, and `/health` - `frontend`: Configured with labels for routing and load balancing on the root path The `traefik-public` network is also defined for use by the Traefik proxy. This file is intended to be used as an override for the main `docker-compose.yml` file during local development. 🐳 chore(docker-compose.yml): add Traefik reverse proxy configuration for services 🔧 fix(docker-compose.yml): fix path to startup-backend.sh script 🚀 feat(docker-compose.yml): add support for deploying backend, celery worker, flower, frontend, prometheus, and grafana services 🔧 fix(docker-compose.yml): fix volume configuration for db service 🔧 fix(docker-compose.yml): fix network configuration for pgadmin service 🔧 fix(docker-compose.yml): fix network configuration for traefik proxy service 🔧 fix(docker-compose.yml): fix network configuration for flower service 🔧 fix(docker-compose.yml): fix network configuration for frontend service 🔧 fix(docker-compose.yml): fix network configuration for prometheus service 🔧 fix(docker-compose.yml): fix network configuration for grafana service
55 lines
2 KiB
YAML
55 lines
2 KiB
YAML
version: "3.3"
|
|
services:
|
|
proxy:
|
|
ports:
|
|
- "80:80"
|
|
- "8090:8080"
|
|
command:
|
|
# Enable Docker in Traefik, so that it reads labels from Docker services
|
|
- --providers.docker
|
|
# Add a constraint to only use services with the label for this stack
|
|
# from the env var TRAEFIK_TAG
|
|
- --providers.docker.constraints=Label(`traefik.constraint-label-stack`, `${TRAEFIK_TAG?Variable not set}`)
|
|
# Do not expose all Docker services, only the ones explicitly exposed
|
|
- --providers.docker.exposedbydefault=false
|
|
# Disable Docker Swarm mode for local development
|
|
# - --providers.docker.swarmmode
|
|
# Enable the access log, with HTTP requests
|
|
- --accesslog
|
|
# Enable the Traefik log, for configurations and errors
|
|
- --log
|
|
# Enable the Dashboard and API
|
|
- --api
|
|
# Enable the Dashboard and API in insecure mode for local development
|
|
- --api.insecure=true
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.${STACK_NAME?Variable not set}-traefik-public-http.rule=Host(`${DOMAIN?Variable not set}`)
|
|
- traefik.http.services.${STACK_NAME?Variable not set}-traefik-public.loadbalancer.server.port=80
|
|
|
|
pgadmin:
|
|
ports:
|
|
- "5050:5050"
|
|
|
|
flower:
|
|
ports:
|
|
- "5555:5555"
|
|
|
|
backend:
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.constraint-label-stack=${TRAEFIK_TAG?Variable not set}
|
|
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.rule=PathPrefix(`/api/v1`) || PathPrefix(`/docs`) || PathPrefix(`/health`)
|
|
- traefik.http.services.${STACK_NAME?Variable not set}-backend.loadbalancer.server.port=7860
|
|
|
|
frontend:
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.constraint-label-stack=${TRAEFIK_TAG?Variable not set}
|
|
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-http.rule=PathPrefix(`/`)
|
|
- traefik.http.services.${STACK_NAME?Variable not set}-frontend.loadbalancer.server.port=80
|
|
|
|
networks:
|
|
traefik-public:
|
|
# For local dev, don't expect an external Traefik network
|
|
external: false
|