-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
58 lines (53 loc) · 975 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
48
49
50
51
52
53
54
55
56
57
58
version: '3.4'
services:
db:
image: postgres:9.6
environment:
POSTGRES_USER: poieticuser
POSTGRES_PASSWORD: poieticpass
POSTGRES_DB: poieticdb
ports:
- "5432:5432"
volumes:
- pg_data:/var/lib/postgresql/data
restart: "no"
api:
build:
context: api
dockerfile: docker/Dockerfile
environment:
DATABASE_URL: postgresql://poieticuser:poieticpass@db/poieticdb
volumes:
- ./api:/app
# command: ...
restart: "no"
ports:
- "8000:8000"
links:
- db
adminer:
image: adminer
restart: "no"
ports:
- "8001:8001"
links:
- db
# ui:
# build:
# context: ui
# dockerfile: ui/docker/Dockerfile
#
# proxy:
# build:
# context: ./
# dockerfile: docker/proxy/Dockerfile
# ports:
# - "80:80"
# restart: on-failure
#
# tty: true
# depends_on:
# - api
# - ui
volumes:
pg_data: