-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
40 lines (36 loc) · 892 Bytes
/
compose.yaml
File metadata and controls
40 lines (36 loc) · 892 Bytes
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
version: "1"
services:
postgres:
image: postgres:latest
restart: always
environment:
POSTGRES_USER: zlplib
POSTGRES_PASSWORD: zlplibpass
volumes:
- postgres:/var/lib/postgresql/data
pgadmin:
image: dpage/pgadmin4:latest
environment:
PGADMIN_DEFAULT_EMAIL: ranhummer@gmail.com
PGADMIN_DEFAULT_PASSWORD: zlplibpass
PGADMIN_LISTEN_PORT: 80
ports:
- 15432:80
volumes:
- pgadmin:/var/lib/pgadmin
depends_on:
- postgres
server:
build:
context: ./src/server
volumes:
- server:/server
ports:
- 33333:33333
environment:
POSTGRES_USER: zlplib
POSTGRES_PASSWORD: zlplibpass
volumes:
postgres:
pgadmin:
server: