forked from archerysec/archerysec
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
98 lines (90 loc) · 2.17 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
version: '3.6'
services:
db:
image: postgres:10.1-alpine
volumes:
- ./dbdata:/var/lib/postgresql/data
environment:
- POSTGRES_DB=archerysec
- POSTGRES_PASSWORD=archerysec
- POSTGRES_USER=archerysec
archerysec:
image: archerysec/archerysec
ports:
- "8000:8000"
expose:
- "8000"
depends_on:
- db
links:
- db:db
environment:
- DB_PASSWORD=archerysec
- DB_USER=archerysec
- DB_NAME=archerysec
- DB_HOST=db
- DJANGO_SETTINGS_MODULE=archerysecurity.settings.development
- DJANGO_SECRET_KEY=${DJANGO_SECRET_KEY:-"SETME"}
- DJANGO_DEBUG=1
- EMAIL_HOST=mailhog
- EMAIL_PORT=1025
container_name: archerysec
archerysec-worker:
image: archerysec/archerysec
depends_on:
- db
- archerysec
links:
- db
environment:
- DB_PASSWORD=archerysec
- DB_USER=archerysec
- DB_NAME=archerysec
- DB_HOST=db
- DJANGO_SETTINGS_MODULE=archerysecurity.settings.development
- DJANGO_SECRET_KEY=${DJANGO_SECRET_KEY:-"SETME"}
- DJANGO_DEBUG=1
- EMAIL_HOST=mailhog
- EMAIL_PORT=1025
- ARCHERY_WORKER=True
container_name: archerysec-worker
zaproxy:
image: owasp/zap2docker-stable
command: zap.sh -daemon -host 0.0.0.0 -port 8090 -config api.disablekey=true -config api.addrs.addr.name=.* -config api.addrs.addr.regex=true
ports:
- "8090:8090"
expose:
# ZAP is running on 8090, we want it to be accessible by our tools
- "8090"
links:
- archerysec
container_name: zapscanner
arachni:
image: ahannigan/docker-arachni
#build: ../arachni
ports:
- "9292:9292"
- "7331:7331"
command: bin/arachni_rest_server --address 0.0.0.0
links:
- archerysec
container_name: arachniscanner
openvas:
image: avhost/docker-openvas
ports:
- "443:443"
- "9390:9390"
- "9392:9392"
expose:
- "9390"
- "9392"
- "443"
links:
- archerysec
container_name: openvas
mailhog:
image: mailhog/mailhog
ports:
- "1025:1025"
- "8025:8025"
container_name: mailhog