1 Star 0 Fork 0

Heisenberg/archerysec

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 2.27 KB
一键复制 编辑 原始数据 按行查看 历史
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"
environment:
- ZAP_PORT=8090
links:
- archerysec
container_name: zapscanner
arachni:
image: arachni/arachni
ports:
- "9292:9292"
- "7331:7331"
environment:
- ARACHNI_PARAMS="--authentication-username arachni --authentication-password password --verbose --reroute-to-logfile --debug 3"
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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Jesse3692/archerysec.git
[email protected]:Jesse3692/archerysec.git
Jesse3692
archerysec
archerysec
master

搜索帮助