-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompose.yaml
55 lines (51 loc) · 1.05 KB
/
compose.yaml
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
services:
# MathU_BK:
# build:
# context: .
# environment:
# NODE_ENV: production
# ports:
# - 3000:3000
# depends_on:
# postgres:
# condition: service_healthy
postgres:
image: postgres:13
container_name: postgres
restart: always
env_file:
- .env
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_DB=${POSTGRES_DB}
volumes:
- postgres:/var/lib/postgresql/data
ports:
- '5432:5432'
networks:
- pg-network
# healthcheck:
# test: ['CMD', 'pg_isready']
# interval: 10s
# timeout: 5s
# retries: 5
pgadmin:
image: dpage/pgadmin4
container_name: pgadmin
restart: always
environment:
- PGADMIN_DEFAULT_EMAIL=admin@gmail.com
- PGADMIN_DEFAULT_PASSWORD=admin
volumes:
- pgadmin:/var/lib/pgadmin/data
ports:
- '5050:80'
networks:
- pg-network
volumes:
postgres:
pgadmin:
networks:
pg-network:
driver: bridge