forked from litestar-org/litestar-fullstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
85 lines (85 loc) · 1.64 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
version: "3.9"
services:
cache:
image: redis:latest
ports:
- "16379:6379"
hostname: cache
command: redis-server --appendonly yes
volumes:
- cache-data:/data
environment:
ALLOW_EMPTY_PASSWORD: "yes"
restart: unless-stopped
logging:
options:
max-size: 10m
max-file: "3"
healthcheck:
test:
- CMD
- redis-cli
- ping
interval: 1s
timeout: 3s
retries: 30
db:
image: postgres:latest
ports:
- "15432:5432"
hostname: db
environment:
POSTGRES_PASSWORD: "app"
POSTGRES_USER: "app"
POSTGRES_DB: "app"
volumes:
- db-data:/var/lib/postgresql/data
restart: unless-stopped
logging:
options:
max-size: 10m
max-file: "3"
healthcheck:
test:
- CMD
- pg_isready
- -U
- app
interval: 2s
timeout: 3s
retries: 40
app:
build:
context: .
dockerfile: deploy/docker/run/Dockerfile
image: app:latest
restart: always
depends_on:
db:
condition: service_healthy
cache:
condition: service_healthy
ports:
- "8000:8000"
env_file:
- .env.example
worker:
image: app:latest
command: wait-for-redis && litestar workers run
restart: always
env_file:
- .env.example
migrator:
image: app:latest
restart: "no"
command: litestar database upgrade --no-prompt
env_file:
- .env.example
depends_on:
db:
condition: service_healthy
cache:
condition: service_healthy
volumes:
db-data: {}
cache-data: {}