-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
67 lines (62 loc) · 2.41 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
services:
karton-dns_reaper:
build:
context: Artemis-modules-extra
dockerfile: karton_dns_reaper/Dockerfile
volumes:
- "./docker/karton.ini:/etc/karton/karton.ini"
- "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"
depends_on: [karton-system]
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/karton.ini:/etc/karton/karton.ini"
- "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"
depends_on: [karton-system]
env_file: .env
restart: always
command: "python3 -m artemis.modules.forti_vuln"
karton-sqlmap:
build:
context: Artemis-modules-extra
dockerfile: karton_sqlmap/Dockerfile
volumes:
- "./docker/karton.ini:/etc/karton/karton.ini"
- "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"
depends_on: [karton-system]
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/karton.ini:/etc/karton/karton.ini"
- "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"
depends_on: [karton-system]
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/karton.ini:/etc/karton/karton.ini", "${DOCKER_COMPOSE_ADDITIONAL_SHARED_DIRECTORY:-./shared}:/shared/"]
depends_on: [karton-system]
env_file: .env
restart: always
command: "python3 -m artemis.modules.karton_whatvpn"
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/ssl_checks/:/opt/artemis/reporting/modules/ssl_checks/