-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
145 lines (131 loc) · 2.7 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
networks:
train-to-busan:
cookie-monster:
idoor:
magic-table:
sqli:
valuable-insights:
baby-pwn:
cheese-shop:
cli:
length-check:
attention-check:
sigma-balls:
some-sums:
services:
train-to-busan:
build: challenges/web/Train-to-Busan/service/Train-to-Busan
container_name: train-to-busan
networks:
- train-to-busan
ports:
- 8767:5000
restart: always
cookie-monster:
build: challenges/web/cookie-monster/service/app
container_name: cookie-monster
networks:
- cookie-monster
ports:
- 8768:5000
restart: always
idoor:
build: challenges/web/iDoor/service
container_name: idoor
networks:
- idoor
ports:
- 8769:80
restart: always
magic-table:
build: challenges/web/Magic-Table/service/Magic-Table
container_name: magic-table
networks:
- magic-table
ports:
- 8770:80
restart: always
sqli:
build: challenges/web/SQLi/service
container_name: sqli
depends_on:
- sqli-db
networks:
- sqli
ports:
- 8771:5000
restart: always
sqli-db:
image: mysql:5.7
restart: always
networks:
- sqli
environment:
MYSQL_ROOT_PASSWORD: SuperSecretPassword123!@YCEP24
MYSQL_DATABASE: mydatabase
ports:
- 3306:3306
valuable-insights:
build: challenges/web/Valuable-Insights/service
container_name: valuable-insights
networks:
- valuable-insights
ports:
- 8772:80
restart: always
baby-pwn:
build: "challenges/pwn/Baby Pwn/service"
container_name: baby-pwn
networks:
- baby-pwn
ports:
- 9112:1337
restart: always
cheese-shop:
build: "challenges/pwn/Cheese Shop/service"
container_name: cheese-shop
networks:
- cheese-shop
ports:
- 9113:1337
restart: always
cli:
build: "challenges/pwn/CLI/service"
container_name: cli
networks:
- cli
ports:
- 9114:13337
restart: always
length-check:
build: "challenges/pwn/Length Check/service"
container_name: length-check
networks:
- length-check
ports:
- 9115:1337
restart: always
attention-check:
build: "challenges/pwn/Attention Check/service"
container_name: attention-check
networks:
- attention-check
ports:
- 9116:1337
restart: always
sigma-balls:
build: "challenges/pwn/Sigma Balls/service"
container_name: sigma-balls
networks:
- sigma-balls
ports:
- 9117:1337
restart: always
some-sums:
build: "challenges/misc/some sums/service"
container_name: some-sums
networks:
- some-sums
ports:
- 9118:1337
restart: always