-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (38 loc) · 835 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (38 loc) · 835 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
# Use postgres/example user/password credentials
version: '3.3'
services:
simpleworklist_dbmaster:
image: postgres:latest
restart: always
networks:
- net
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: simpleworklistpwd
POSTGRES_USER: simpleworklist
POSTGRES_DB: simpleworklist
CHARSET: de_DE.UTF-8
PGPORT: 5432
simpleworklist_dbref:
image: postgres:latest
restart: always
networks:
- net
ports:
- 5464:5464
environment:
POSTGRES_PASSWORD: simpleworklistrefpwd
POSTGRES_USER: simpleworklistref
POSTGRES_DB: simpleworklistref
CHARSET: de_DE.UTF-8
PGPORT: 5464
simpleworklist_adminer:
image: adminer:latest
restart: always
networks:
- net
ports:
- 4000:40003
networks:
net: