theHarvester/docker-compose.yml
L1ghtn1ng 8c6cd3042c Update Docker settings and shift to pipx for module installation
Changed the installation process to use `pipx` instead of `pip3` in the Dockerfile. The path setting for API keys and proxies in `docker-compose.yml` were also updated. Additionally, the name of the default network was altered to better reflect its use.
2023-12-18 16:34:06 +00:00

17 lines
420 B
YAML

version: "3.9"
services:
theharvester.svc.local:
container_name: theHarvester
volumes:
- ./api-keys.yaml:/root/.theHarvester/api-keys.yaml
- ./api-keys.yaml:/etc/theHarvester/api-keys.yaml
- ./proxies.yaml:/etc/theHarvester/proxies.yaml
- ./proxies.yaml:/root/.theHarvester/proxies.yaml
build: .
ports:
- "8080:80"
networks:
default:
name: app_theHarvester_network