-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
78 lines (75 loc) · 1.85 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
## Docker compose file for local dev environment
version: "3.8"
services:
# API Backend using Python fastapi
fastapi1:
build: app/.
container_name: fastapi1
command: uvicorn app.main:app --host 0.0.0.0 --port 5001
volumes:
- ./app:/usr/src/app/
ports:
- "5001:5001"
depends_on:
- redis
- postgres
links:
- "db:database"
- "redis:cache"
environment:
- REDIS_HOST=cache
- REDIS_PORT=6379
- DB_HOST=database
- DB_NAME=postgres
- DB_USER=postgres
- DB_PASSWORD=postgres
fastapi2:
build: app/.
container_name: fastapi2
command: uvicorn app.main:app --host 0.0.0.0 --port 5002
volumes:
- ./app:/usr/src/app/
ports:
- "5002:5002"
depends_on:
- redis
- postgres
links:
- "db:database"
- "redis:cache"
environment:
- REDIS_HOST=cache
- REDIS_PORT=6379
- DB_HOST=database
- DB_NAME=postgres
- DB_USER=postgres
- DB_PASSWORD=postgres
nginx:
build: nginx-proxy/.
restart: always
ports:
- "8083:80"
depends_on:
- fastapi1
- fastapi2
# Local Redis instance
redis:
image: "redis:alpine"
restart: always
ports:
- "6379:6379"
# Postgres database using docker volumes
db:
image: postgres:14.1-alpine
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- '5432:5432'
volumes:
- db:/var/lib/postgresql/data
# Relevant docker volumes to ensure persistence
volumes:
db:
driver: local