-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
55 lines (47 loc) · 1.09 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
version: '3'
networks:
golang-postgres-docker:
services:
server:
build:
context: .
dockerfile: Dockerfile
container_name: go-container
depends_on:
- postgres
networks:
- golang-postgres-docker
ports:
- "8000:8000"
postgres:
image: postgres
container_name: postgres-container
ports:
- "5432:5432"
restart: always
environment:
POSTGRES_DB: ${POSTGRES_DB:-app}
# You should definitely change the password in production
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-app}
POSTGRES_USER: ${POSTGRES_USER:-app}
volumes:
- db-data:/var/lib/postgresql/data:rw
- ./db:/docker-entrypoint-initdb.d/
networks:
- golang-postgres-docker
pgadmin:
image: dpage/pgadmin4
container_name: pgadmin-container
environment:
- PGADMIN_DEFAULT_PASSWORD=7BixyPr25B28s7SQ
ports:
- '5050:80'
restart: always
volumes:
- pgadmin:/root/.pgadmin
networks:
- golang-postgres-docker
volumes:
db-data:
pgadmin: