moved some services to nas, added nzbhydra2 to pi

This commit is contained in:
2024-03-24 23:59:27 +00:00
parent 6746aa64cf
commit 5863f63d0a
5 changed files with 30 additions and 176 deletions

View File

@@ -0,0 +1,30 @@
---
services:
nzbhydra2:
image: lscr.io/linuxserver/nzbhydra2:latest
container_name: nzbhydra2
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
volumes:
- nzbhydra2_data:/config
- nfs-downloads:/downloads
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.services.nzbhydra2.loadbalancer.server.port=5076"
volumes:
nzbhydra2_data:
driver: local
name: nzbhydra2_data
nfs-downloads:
driver: local
driver_opts:
type: nfs
o: addr=192.168.0.145,nolock,soft,rw
device: ":/volume1/downloads"