-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
81 lines (81 loc) · 1.54 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
version: "3"
services:
buff1:
build: ./buff1
ports:
- "31337:3001"
privileged: true
environment:
- FLAG=${FLAG_BUFF1}
restart: unless-stopped
scope:
build: ./scope
ports:
- "31313:3001"
privileged: true
environment:
- FLAG=${FLAG_SCOPE}
restart: unless-stopped
flag_hash:
build: ./flag-hash
environment:
- FLAG=${FLAG_HASH}
ports:
- "8888:80"
restart: unless-stopped
havcebin:
build: ./havcebin
volumes:
- havcebin:/home/havcebin/.storage
environment:
- FLAG=${FLAG_HAVCEBIN}
ports:
- "8080:8080"
restart: unless-stopped
hidden_flag:
build: ./hidden-flag
environment:
- FLAG=${FLAG_HIDDEN_FLAG}
ports:
- "8808:3000"
restart: unless-stopped
login:
build: ./login
privileged: true
environment:
- FLAG=${FLAG_LOGIN}
ports:
- "31338:3001"
restart: unless-stopped
lottery:
build: ./lottery
privileged: true
environment:
- FLAG=${FLAG_LOTTERY}
ports:
- "31340:3001"
restart: unless-stopped
psw_check:
build: ./psw_check
privileged: true
environment:
- FLAG=${FLAG_PSW_CHECK}
ports:
- "31350:3001"
restart: unless-stopped
quiz:
build: ./quiz
environment:
- FLAG=${FLAG_QUIZ}
ports:
- "31339:1337"
restart: unless-stopped
flag-shop:
build: ./flag-shop
environment:
- FLAG=${FLAG_SHOP}
ports:
- "8181:3000"
restart: unless-stopped
volumes:
havcebin: