-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
163 lines (146 loc) · 2.91 KB
/
docker-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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
version: '3.7'
services:
dino-run-easy:
restart: always
build:
context: "./dino-run"
dockerfile: ./Dockerfile.easy
ports:
- "1001:7071"
networks:
chall:
ipv4_address: 172.128.1.101
grafana:
restart: always
build:
context: "./grafana"
dockerfile: ./Dockerfile
ports:
- "1002:3000"
networks:
chall:
ipv4_address: 172.128.1.102
google:
restart: always
build:
context: "./google"
dockerfile: ./Dockerfile
ports:
- "1003:80"
networks:
chall:
ipv4_address: 172.128.1.103
dino-run-hard:
restart: always
build:
context: "./dino-run"
dockerfile: ./Dockerfile.hard
ports:
- "1004:7071"
networks:
chall:
ipv4_address: 172.128.1.104
request-bin-easy:
restart: always
build:
context: "./request-bin"
dockerfile: ./Dockerfile.easy
ports:
- "1005:80"
networks:
chall:
ipv4_address: 172.128.1.105
request-bin-hard:
restart: always
build:
context: "./request-bin"
dockerfile: ./Dockerfile.hard
ports:
- "1006:80"
networks:
chall:
ipv4_address: 172.128.1.106
status-page:
restart: always
build:
context: "./status-page"
dockerfile: ./Dockerfile
ports:
- "1007:80"
networks:
chall:
ipv4_address: 172.128.1.107
fileio:
restart: always
build:
context: "./fileio"
dockerfile: ./Dockerfile
ports:
- "1008:80"
networks:
chall:
ipv4_address: 172.128.1.108
https-verifier:
restart: always
build:
context: "./https-verifier"
dockerfile: ./Dockerfile
ports:
- "1009:80"
networks:
chall:
ipv4_address: 172.128.1.109
flag-checker:
restart: always
build:
context: "./flag-checker"
dockerfile: ./Dockerfile
ports:
- "1010:443"
networks:
chall:
ipv4_address: 172.128.1.110
rnbbackend:
restart: always
build:
context: "./readandburn"
dockerfile: ./Dockerfile.backend
networks:
chall:
ipv4_address: 172.128.1.111
rnbproxy:
restart: always
build:
context: "./readandburn"
dockerfile: ./Dockerfile.proxy
ports:
- "1011:80"
networks:
chall:
ipv4_address: 172.128.1.112
dino-run-frontend-easy:
restart: always
build:
context: "./dino-run"
dockerfile: ./Dockerfile.frontend
ports:
- "1012:80"
networks:
chall:
ipv4_address: 172.128.1.113
dino-run-frontend-hard:
restart: always
build:
context: "./dino-run"
dockerfile: ./Dockerfile.frontend
ports:
- "1013:80"
networks:
chall:
ipv4_address: 172.128.1.114
networks:
chall:
ipam:
driver: default
config:
- subnet: 172.128.0.0/16