-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
78 lines (68 loc) · 1.29 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
version: '3.8'
services:
lead-time:
build: lead-time/
container_name: lead_time
ports:
- "8001:8001"
networks:
- taiga-url-service
cycle-time:
build: cycle-time/
container_name: cycle_time
ports:
- "8002:8002"
networks:
- taiga-url-service
dev-focus:
build: dev-focus/
container_name: dev_focus
ports:
- "8003:8003"
networks:
- taiga-url-service
cruft:
build: cruft/
container_name: cruft
ports:
- "8005:8005"
networks:
- taiga-url-service
burndown-chart:
build: burndown-chart/
container_name: burndown_chart
ports:
- "8004:8004"
networks:
- taiga-url-service
gateway:
build: ./APIGateway
container_name: APIGateway
ports:
- "8000:8000"
networks:
- taiga-url-service
auth:
build: authenticate/
container_name: authenticate
ports:
- "8007:8007"
networks:
- taiga-url-service
backend:
build: ./taigaProject
container_name: backend
ports:
- "8010:8010"
networks:
- taiga-url-service
frontend:
build: ./react-ui
container_name: frontend
ports:
- "3000:3000"
networks:
- taiga-url-service
networks:
taiga-url-service:
driver: bridge