everything

This commit is contained in:
harrispm 2024-11-05 21:46:26 -06:00
parent 8aadf69aaa
commit 96e028110d
877 changed files with 3046 additions and 0 deletions

33
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