-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
80 lines (73 loc) · 2.91 KB
/
docker-compose.yml
File metadata and controls
80 lines (73 loc) · 2.91 KB
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
services:
karton-dns_reaper:
build:
context: Artemis-modules-extra
dockerfile: karton_dns_reaper/Dockerfile
volumes:
- "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"
env_file: .env
restart: always
command: "python3 -m artemis.modules.karton_dns_reaper"
karton-forti_vuln:
build:
context: Artemis-modules-extra
dockerfile: forti_vuln/Dockerfile
volumes:
- "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"
env_file: .env
restart: always
command: "python3 -m artemis.modules.forti_vuln"
karton-moodle_scanner:
build:
context: Artemis-modules-extra
dockerfile: karton_moodle_scanner/Dockerfile
volumes:
- "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"
env_file: .env
restart: always
command: "python3 -m artemis.modules.moodle_scanner"
karton-sqlmap:
build:
context: Artemis-modules-extra
dockerfile: karton_sqlmap/Dockerfile
volumes:
- "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"
env_file: .env
restart: always
command: "python3 -m artemis.modules.karton_sqlmap"
karton-ssl_checks:
build:
context: Artemis-modules-extra
dockerfile: karton_ssl_checks/Dockerfile
volumes:
- "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"
env_file: .env
restart: always
command: "python3 -m artemis.modules.karton_ssl_checks"
profiles: [not-arm]
karton-whatvpn:
build:
context: Artemis-modules-extra
dockerfile: karton_whatvpn/Dockerfile
volumes: ["${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"]
env_file: .env
restart: always
command: "python3 -m artemis.modules.karton_whatvpn"
karton_xss_scanner:
build:
context: Artemis-modules-extra
dockerfile: karton_xss_scanner/Dockerfile
volumes: ["${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"]
env_file: .env
restart: always
command: "python3 -m artemis.modules.karton_xss_scanner"
autoreporter:
volumes:
- ./Artemis-modules-extra/extra_modules_config.py:/opt/extra_modules_config.py
- ./Artemis-modules-extra/autoreporter_addons/dns_reaper/:/opt/artemis/reporting/modules/dns_reaper/
- ./Artemis-modules-extra/autoreporter_addons/forti_vuln/:/opt/artemis/reporting/modules/forti_vuln/
- ./Artemis-modules-extra/autoreporter_addons/sqlmap/:/opt/artemis/reporting/modules/sqlmap/
- ./Artemis-modules-extra/autoreporter_addons/moodle_scanner/:/opt/artemis/reporting/modules/moodle_scanner/
- ./Artemis-modules-extra/autoreporter_addons/ssl_checks/:/opt/artemis/reporting/modules/ssl_checks/
- ./Artemis-modules-extra/autoreporter_addons/xss_scanner/:/opt/artemis/reporting/modules/xss_scanner/
- ./Artemis-modules-extra/autoreporter_addons/whatvpn/:/opt/artemis/reporting/modules/whatvpn/