forked from litestar-org/litestar-fullstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.infra.yml
53 lines (53 loc) · 997 Bytes
/
docker-compose.infra.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
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
volumes:
db-data: {}
cache-data: {}