-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (46 loc) · 911 Bytes
/
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
services:
apiserver:
build:
context: .
dockerfile: ./Dockerfile
image: apiserver:latest
platform: linux/amd64
container_name: apiserver
ports:
- "8000:8000"
env_file:
- .env
working_dir: /build/
depends_on:
- postgres
postgres:
image: postgres:16-alpine
hostname: postgres
ports:
- 5432:5432
volumes:
- postgres:/var/lib/postgresql/data
env_file:
- .env
healthcheck:
test: ["CMD-SHELL", "pg_isready -d ${POSTGRES_DB} -U ${POSTGRES_USER}"]
interval: 10s
timeout: 5s
retries: 3
redis:
image: redis
container_name: go-pos_redis
ports:
- 6379:6379
volumes:
- redis:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 3
volumes:
postgres:
driver: local
redis:
driver: local