-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdocker-compose.db.yml
49 lines (46 loc) · 978 Bytes
/
docker-compose.db.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
version: "3.8"
networks:
creature-chess:
name: creature-chess
driver: bridge
volumes:
pgdata:
pgadmin:
services:
# the postgres DB
postgres:
image: postgres:13.9
environment:
- POSTGRES_DB
- POSTGRES_USER
- POSTGRES_PASSWORD
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER"]
interval: 15s
timeout: 5s
start_period: 10s
retries: 20
networks:
- creature-chess
# pgadmin, a local web UI for managing the DB
pgadmin:
image: dpage/pgadmin4
environment:
- PGADMIN_DEFAULT_PASSWORD=root
- POSTGRES_DB
- POSTGRES_USER
- POSTGRES_PASSWORD
ports:
- 5050:80
networks:
- creature-chess
volumes:
- pgadmin:/root/.pgadmin
depends_on:
postgres:
condition: service_healthy