-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
75 lines (68 loc) · 1.38 KB
/
docker-compose.yml
File metadata and controls
75 lines (68 loc) · 1.38 KB
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
version: '3.8'
services:
agile_methodology:
build:
context: ./agile_methodology
dockerfile: Dockerfile
ports:
- "8011-8015:8011-8015"
networks:
- lab_network
collaboration_tools:
build:
context: ./collaboration_tools
dockerfile: Dockerfile
ports:
- "8006-8010:8006-8010"
networks:
- lab_network
project_management:
build:
context: ./project_management
dockerfile: Dockerfile
ports:
- "8001-8005:8001-8005"
networks:
- lab_network
testing_frameworks:
build:
context: ./testing_frameworks
dockerfile: Dockerfile
ports:
- "8016-8020:8016-8020"
networks:
- lab_network
backend_services:
build:
context: ./backend_services
dockerfile: Dockerfile
ports:
- "9000:9000"
- "9001:9001"
networks:
- lab_network
integration:
build:
context: ./integration
dockerfile: Dockerfile
ports:
- "8022-8026:8022-8026" # Analytics tracker
networks:
- lab_network
- virtual-labs-network
main_services:
build:
context: ./main_dashboard
dockerfile: Dockerfile
ports:
- "8000:8000"
- "8501:8501"
- "9100:9100"
networks:
- lab_network
networks:
lab_network:
driver: bridge
virtual-labs-network:
driver: bridge
external: true