Files
nfoguard/docker-compose.example.yml
T
2025-09-07 11:16:15 -04:00

27 lines
515 B
YAML

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