This commit is contained in:
traveler 2025-06-25 14:07:44 -05:00
commit 123fae9451
53 changed files with 3976 additions and 0 deletions

33
docker2/NG-NMAP.yaml Executable file
View file

@ -0,0 +1,33 @@
version: "3"
services:
nmap:
image: instrumentisto/nmap
container_name: nmap
command: -sT -A -T3 -oX tmp/myscan.xml 192.168.0.0/22
cap_add:
- NET_ADMIN
volumes:
- /DockerVol/webmap:/tmp
network_mode: host
environment:
- TZ=America/Chicago
- PGID=998
- PUID=1001
webmap:
container_name: webmap
hostname: webmap
ports:
- '8001:8000'
volumes:
- /DockerVol/webmap:/opt/xml
image: reborntc/webmap
environment:
- TZ=America/Chicago
- PGID=998
- PUID=1001
networks:
- netgrimoire
restart: unless-stopped