mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-10 17:13:07 +08:00
8c6cd3042c
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.
16 lines
420 B
YAML
16 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
|