19 lines
357 B
YAML
19 lines
357 B
YAML
services:
|
|
scanner:
|
|
build: .
|
|
container_name: netbox_scanner
|
|
tty: true
|
|
command: python scan.py
|
|
volumes:
|
|
- ./output:/app/output
|
|
environment:
|
|
- OUTPUT_PATH=/app/output/network.txt
|
|
|
|
netbox-importer:
|
|
build: .
|
|
container_name: netbox_importer
|
|
tty: true
|
|
command: python ipscan-v2.py
|
|
env_file:
|
|
- .env
|