-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
278 lines (253 loc) · 6.4 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#docker-compose.yml (Base)
networks:
retronet:
driver: bridge
secrets:
user_ssh_key:
file: ./secrets/ssh/id_rsa_shared
user_ssh_pubkey:
file: ./secrets/ssh/id_rsa_shared.pub
services:
#Everything is reliant of VDE, so keep it at the top
vde-switch:
image: retronetsec/vde-switch:${TAG:-latest}
build:
context: ./networking/vde-switch
secrets:
- user_ssh_pubkey
ports:
- "2022:22"
- "5899:5899"
networks:
- retronet
container_name: vde-switch
stdin_open: true
tty: true
cap_add:
- NET_ADMIN
labels:
retronetsec.img_description: "Software defined networking (essemtially a software switch) that all the hosts attempt to use. Without this hosts can't talk to each other"
fs1:
image: retronetsec/fs1:${TAG:-latest}
build :
context: ./networking/FileServer
secrets:
- user_ssh_key
- user_ssh_pubkey
environment:
- vdehost=vde-switch
depends_on:
- vde-switch
links:
- vde-switch
networks:
- retronet
cap_add:
- mknod
- NET_ADMIN
ports:
- "2023:22"
labels:
retronetsec.img_description: "A modern file server with old school software, available over FTP & SMB {WORK IN PROGRESS}"
dns:
restart: always
image: retronetsec/dns:${TAG:-latest}
build :
context: ./networking/dns
secrets:
- user_ssh_key
- user_ssh_pubkey
environment:
- vdehost=vde-switch
depends_on:
- vde-switch
links:
- vde-switch
volumes:
- ./networking/dns/dnsmasq.conf:/etc/dnsmasq.conf
ports:
- "53:53/udp"
cap_add:
- NET_ADMIN
networks:
- retronet
labels:
retronetsec.img_description: "A modern DNS sever, but with some host records that my cause strange behaviour on old machines"
#DOS
dos622:
image: retronetsec/dos622:${TAG:-latest}
build :
context: ./hosts/DOS/ms-dos-6-22
ports:
- "5910:5900"
labels:
retronetsec.needs_separate_img: "Dos6.22.img"
retronetsec.img_description: "A Basic DOS 6.22 machine. Has CD drive but no networking"
doomipx:
image: retronetsec/doomipx:${TAG:-latest}
build :
context: ./hosts/DOS/DoomIPX
secrets:
- user_ssh_key
environment:
- vdehost=vde-switch
depends_on:
vde-switch:
condition: service_started
links:
- vde-switch
networks:
- retronet
ports:
- "5902:5900"
labels:
retronetsec.needs_separate_img: "DoomIPX.img"
retronetsec.img_description: "DOS 6.22 with IPX and Doom_SE"
doomipx2:
image: retronetsec/doomipx:${TAG:-latest}
build :
context: ./hosts/DOS/DoomIPX
secrets:
- user_ssh_key
environment:
- vdehost=vde-switch
depends_on:
vde-switch:
condition: service_started
links:
- vde-switch
networks:
- retronet
ports:
- "5903:5900"
labels:
retronetsec.needs_separate_img: "DoomIPX.img"
retronetsec.img_description: "DOS 6.22 with IPX and Doom_SE"
ms-dos-6-22-tcpip:
image: retronetsec/ms-dos-6-22-tcpip:${TAG:-latest}
build :
context: ./hosts/DOS/ms-dos-6-22-tcpip
secrets:
- user_ssh_key
environment:
- vdehost=vde-switch
depends_on:
vde-switch:
condition: service_started
links:
- vde-switch
networks:
- retronet
ports:
- "5905:5900"
labels:
retronetsec.needs_separate_img: "ms-dos-6-22-tcpip.img"
retronetsec.img_description: "A Basic DOS 6.22 machine, with Micrsofts first TCP/IP stack. Lacks most common TCP/IP tools"
stig:
image: retronetsec/stig:${TAG:-latest}
build :
context: ./hosts/DOS/stig
secrets:
- user_ssh_key
environment:
- vdehost=vde-switch
depends_on:
vde-switch:
condition: service_started
links:
- vde-switch
networks:
- retronet
ports:
- "5904:5900"
labels:
retronetsec.needs_separate_img : "stig.img"
retronetsec.img_description: "Stigs DOS box and software server"
#Windows
wfw:
image: retronetsec/wfw:${TAG:-latest}
build :
context: ./hosts/Windows/Win3.11
secrets:
- user_ssh_key
environment:
- vdehost=vde-switch
depends_on:
- vde-switch
links:
- vde-switch
networks:
- retronet
ports:
- "5901:5900"
labels:
retronetsec.needs_separate_img: "Win31.img"
retronetsec.img_description: "Win 3.11 (Windows for Workgroups) with TCP/IP, NetBEUI, Netscape Navigator and more"
win95plus:
image: retronetsec/win95plus:${TAG:-latest}
build :
context: ./hosts/Windows/Win95
secrets:
- user_ssh_key
environment:
- vdehost=vde-switch
depends_on:
- vde-switch
links:
- vde-switch
networks:
- retronet
ports:
- "5906:5900"
labels:
retronetsec.needs_separate_img: "win95plus.img"
retronetsec.img_description: "First release of Win 95, with Plus Pack for IE & TCP/IP"
#Unix
v7x86:
image: retronetsec/v7x86:${TAG:-latest}
build :
context: ./hosts/Unix/v7x86
secrets:
- user_ssh_key
environment:
- vdehost=vde-switch
depends_on:
vde-switch:
condition: service_started
links:
- vde-switch
networks:
- retronet
ports:
- "5907:5900"
labels:
retronetsec.img_description: "Unix v7 (Bell Labs circa 1979), ported to x86."
#Misc
bbata:
image: ghcr.io/glennpegden2/bbata:latest
ports:
- "8080:80"
labels:
retronetsec.img_description: "Glenn Pegdens simulation of a blueboxable POTS phone system, in the style of and adventure game"
#Modern Utilities
kali:
image: retronetsec/kali:${TAG:-latest}
build :
context: ./hosts/modern/kali
secrets:
- user_ssh_key
environment:
- vdehost=vde-switch
depends_on:
vde-switch:
condition: service_started
links:
- vde-switch
networks:
- retronet
ports:
- "5922:22"
cap_add:
- NET_ADMIN
labels:
retronetsec.img_description: "The latest version of Kali, hand for debugging as as a client to test from. Nothing retro about this"