-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (26 loc) · 1.04 KB
/
docker-compose.yml
File metadata and controls
31 lines (26 loc) · 1.04 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
services:
subdomainenum:
build:
context: .
dockerfile: Dockerfile
args:
SECLISTS_REF: master
image: subdomainenum:latest
# By default launch an interactive shell so you can run arbitrary checks.
# Override via `docker compose run subdomainenum check example.com --json`
entrypoint: ["subdomainenum"]
command: ["--help"]
volumes:
# Persist JSON reports on the host
- ./reports:/reports
# subfinder – API provider keys (optional).
# Create ~/.config/subfinder/provider-config.yaml on the host and
# uncomment the line below to pass it into the container.
# See: https://github.com/projectdiscovery/subfinder#post-installation-instructions
# - ${HOME}/.config/subfinder/provider-config.yaml:/root/.config/subfinder/provider-config.yaml:ro
# Copy .env.example → .env and fill in any keys you want to use.
env_file:
- path: .env
required: false
# Allow raw network access for DNS resolution and tool connectivity
network_mode: host