This repository has been archived on 2025-11-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
swarm-production/stacks/media/sabnzbd/stack.yml
John Allison 8f9bd5ec8d
Some checks failed
Deploy to Swarm / deploy (push) Failing after 3s
New Services:
2025-10-25 12:33:03 -04:00

29 lines
588 B
YAML

services:
sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest
networks:
- homelab
ports:
- 8080:8080
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /mnt/swarm-data/sabnzbd:/config
- /mnt/data/usenet:/data/usenet
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:8080/api?mode=version" ]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
deploy:
replicas: 1
placement:
constraints:
- node.hostname == p4
networks:
homelab:
external: true