-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
76 lines (66 loc) · 1.41 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
version: "3"
services:
# WEB
admin-console:
build: web/admin-console
ports:
- "5001:80"
restart: unless-stopped
flags-database:
build: web/flags-database
ports:
- "5002:80"
restart: unless-stopped
depends_on:
- flags-database-db
flags-database-db:
image: mysql:5
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: fn983hbf3873
volumes:
- ./web/flags-database/src/db/:/docker-entrypoint-initdb.d
golden-pasticciotto:
build: web/golden-pasticciotto
ports:
- "5003:80"
restart: unless-stopped
classroom-storage:
build: web/classroom-storage
ports:
- "5004:5000"
restart: unless-stopped
flags-database-2:
build: web/flags-database-2
ports:
- "5006:80"
restart: unless-stopped
depends_on:
- flags-database-2-db
flags-database-2-db:
image: mysql:5
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: fn983hbf3873
volumes:
- ./web/flags-database-2/src/db/:/docker-entrypoint-initdb.d
# MISC
u-cant-c-me:
build: misc/u-cant-c-me
privileged: true
ports:
- "5005:9000"
restart: unless-stopped
# PWN
stack0:
build: pwn/stack0
privileged: true
ports:
- "5007:9000"
restart: unless-stopped
stack-jmp:
build: .
privileged: true
ports:
- "5008:9000"
restart: unless-stopped