forked from dwyde/challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
60 lines (60 loc) · 1.44 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
version: "2.1"
services:
scoreboard:
build: scoreboard
depends_on: [database]
ports: ['9000:9000']
database:
image: postgres
volumes: ['./db_data:/var/lib/postgresql/data']
web-clicks:
build: challenges/web-clicks
ports: ['9001:80']
web-tags:
build: challenges/web-tags
ports: ['9002:80']
web-admin:
build: challenges/web-admin
ports: ['9003:8888']
crypto-algebraic:
build: challenges/crypto-algebraic
ports: ['9004:8888']
web-sandbox:
build: challenges/web-sandbox
ports: ['9005:7777']
python-zero:
build: challenges/python-zero
ports: ['9006:7777']
python-alphabet:
build: challenges/python-alphabet
ports: ['9007:8888']
python-set-up:
build: challenges/python-set-up
ports: ['9008:8888']
python-arguments:
build: challenges/python-arguments
ports: ['9009:7777']
python-sandbox:
build: challenges/python-sandbox
ports: ['9010:7777']
python-yam:
build: challenges/python-yam
ports: ['9011:7777']
python-format:
build: challenges/python-format
ports: ['9012:7777']
web-sqli:
build: challenges/web-sqli
ports: ['9013:8888']
web-sequel:
build: challenges/web-sequel
ports: ['9014:8888']
web-hidden:
build: challenges/web-hidden
ports: ['9015:80']
web-guestbook:
build: challenges/web-guestbook
ports: ['9016:8080']
python-type:
build: challenges/python-type
ports: ['9017:7777']