-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
83 lines (48 loc) · 1.39 KB
/
compose.yaml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
services:
##########################################
##
## kanban-flow / bootstrap front end
##
##########################################
kanban-flow-web:
container_name: kanban-flow-web
image: softwareshinobi/kanban-flow-web:intranet
build:
context: web
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "10.28.1.1:8080:80"
##########################################
##
## kanban-flow / spring rest back end
##
##########################################
kanban-flow-api:
container_name: kanban-flow-api
image: softwareshinobi/kanban-flow-api:intranet
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "10.28.1.1:8888:8888"
environment:
DB_HOST: 10.28.1.1
DB_NAME: kanban_flow_api
DB_USER: kanban_flow_api
DB_PASS: kanban_flow_api
##########################################
##
## kanban-flow / documentation
##
##########################################
kanban-flow-docs:
container_name: kanban-flow-docs
image: softwareshinobi/kanban-flow-docs:intranet
build:
context: docs
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "10.28.1.1:8081:80"