-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
49 lines (42 loc) · 1003 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
version: '3.3'
services:
postgres:
image: postgres:13
environment:
- POSTGRES_DB=my_db
- POSTGRES_USER=root
- POSTGRES_PASSWORD=123456
ports:
- '5432:5432'
volumes:
- postgres_data:/var/lib/postgresql/data
pgadmin:
image: dpage/pgadmin4
environment:
- PGADMIN_DEFAULT_EMAIL=root@admin.com
- PGADMIN_DEFAULT_PASSWORD=root
ports:
- '5050:80'
volumes:
postgres_data: {}
# version: '3.3'
# services:
# postgres:
# image: postgres:13
# environment:
# - POSTGRES_DB=${POSTGRES_DB}
# - POSTGRES_USER=${POSTGRES_USER}
# - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
# ports:
# - '5432:5432'
# volumes:
# - postgres_data:/var/lib/postgresql/data
# pgadmin:
# image: dpage/pgadmin4
# environment:
# - PGADMIN_DEFAULT_EMAIL=${PGADMIN_DEFAULT_EMAIL}
# - PGADMIN_DEFAULT_PASSWORD=${PGADMIN_DEFAULT_PASSWORD}
# ports:
# - '5050:80'
# volumes:
# postgres_data: {}