feat: intial commits

This commit is contained in:
2025-09-07 11:15:19 -04:00
committed by sbcrumb
parent 51b263ffe7
commit 5782b3970d
3 changed files with 166 additions and 47 deletions
+26
View File
@@ -0,0 +1,26 @@
services:
NFOguard:
build: .
container_name: NFOguard
restart: unless-stopped
user: "1000:1000"
networks:
- saltbox
ports:
- "8085:8080"
volumes:
- /mnt/unionfs/Media/:/media:rw
- ./data:/app/data:rw
- ./.env:/app/.env:ro
env_file:
- .env
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
saltbox:
external: true