mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-10 17:13:07 +08:00
cd462b37f9
* Fix api keys and proxies file in docker file and compose file * update alpine version to 3.17.3 * flake8 fixes * some mypy fixes * Remove uneeded sublister ci test * Remove another uneeded CI test and remove source files for uneeded modules
15 lines
343 B
YAML
15 lines
343 B
YAML
version: "3.9"
|
|
services:
|
|
theharvester.svc.local:
|
|
container_name: theHarvester
|
|
volumes:
|
|
- ./api-keys.yaml:/app/api-keys.yaml
|
|
- ./api-keys.yaml:/etc/theHarvester/api-keys.yaml
|
|
- ./proxies.yaml:/etc/theHarvester/proxies.yaml
|
|
build: .
|
|
ports:
|
|
- "8080:80"
|
|
|
|
networks:
|
|
default:
|
|
name: app_custom_network
|