-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathdocker-compose.yml
112 lines (107 loc) · 3.08 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
services:
proxy:
image: traefik:v3.2
networks:
- traefik-public
- default
ports:
- "80:80"
- "8090:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
command:
# Enable Docker in Traefik, so that it reads labels from Docker services
- --providers.docker
# Do not expose all Docker services, only the ones explicitly exposed
- --providers.docker.exposedbydefault=false
# 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
# Create web entrypoint listening on port 80
- --entrypoints.web.address=:80
labels:
# Enable Traefik for this service, to make it available in the public network
traefik.enable: true
# Use the traefik-public network (declared below)
traefik.docker.network: traefik-public
db:
image: mongo:latest
volumes:
- app-db-data:/data/db
env_file:
- .env
ports:
- "${MONGO_PORT}:${MONGO_PORT}"
environment:
- "MONGO_INITDB_DATABASE=${MONGO_DB}"
- "MONGO_INITDB_ROOT_USERNAME=${MONGO_USER}"
- "MONGO_INITDB_ROOT_PASSWORD=${MONGO_PASSWORD}"
backend:
image: '${DOCKER_IMAGE_BACKEND?Variable not set}:${TAG-latest}'
depends_on:
- db
env_file:
- .env
ports:
- "8000:8000"
environment:
- MONGO_HOST=db
build:
context: ./backend
dockerfile: Dockerfile
command:
- fastapi
- run
- --reload
- "app/main.py"
develop:
watch:
- path: ./backend
action: sync
target: /app
ignore:
- ./backend/.venv
- .venv
- path: ./backend/pyproject.toml
action: rebuild
labels:
- traefik.enable=true
- traefik.http.routers.${STACK_NAME?Variable not set}-backend-http.rule=PathPrefix(`/api`) || PathPrefix(`/docs`) || PathPrefix(`/redoc`)
- traefik.http.services.${STACK_NAME?Variable not set}-backend.loadbalancer.server.port=8000
frontend:
image: '${DOCKER_IMAGE_FRONTEND?Variable not set}:${TAG-latest}'
env_file:
- .env
ports:
- "5173:5173"
build:
context: ./frontend
dockerfile: Dockerfile.development
args:
FRONTEND_ENV: dev
command: npm run dev -- --host
develop:
watch:
- path: ./frontend
action: sync
target: /app
ignore:
- ./frontend/node_modules
- node_modules
- path: ./frontend/package.json
action: rebuild
labels:
- traefik.enable=true
- traefik.http.routers.${STACK_NAME?Variable not set}-frontend-http.rule=PathPrefix(`/`)
- traefik.http.services.${STACK_NAME?Variable not set}-frontend.loadbalancer.server.port=5173
volumes:
app-db-data:
networks:
traefik-public:
# For local dev, don't expect an external Traefik network
external: false