54 lines
1.2 KiB
YAML
Executable file
54 lines
1.2 KiB
YAML
Executable file
|
|
version: "2.2"
|
|
services:
|
|
hydra2:
|
|
image: linuxserver/nzbhydra2:dev
|
|
container_name: hydra2
|
|
hostname: hydra2
|
|
networks:
|
|
- netgrimoire
|
|
volumes:
|
|
- /DockerVol/hydra2/config:/config
|
|
- /DockerVol/hydra2/downloads:/downloads
|
|
ports:
|
|
- 5076:5076
|
|
environment:
|
|
- TZ=America/Chicago
|
|
- PGID=999
|
|
- PUID=1001
|
|
restart: unless-stopped
|
|
|
|
Sabnzbd:
|
|
image: linuxserver/sabnzbd
|
|
container_name: sabnzbd
|
|
hostname: sabnzbd
|
|
networks:
|
|
- netgrimoire
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- /data/nfs/Baxter/:/data:shared
|
|
- /DockerVol/sabnzbd/config:/config
|
|
environment:
|
|
- TZ=America/Chicago
|
|
- PGID=999
|
|
- PUID=1001
|
|
restart: unless-stopped
|
|
|
|
nzbget:
|
|
image: linuxserver/nzbget:latest
|
|
container_name: nzbget
|
|
hostname: nzbget
|
|
networks:
|
|
- netgrimoire
|
|
ports:
|
|
- "6789:6789"
|
|
volumes:
|
|
- /DockerVol/nzbget/config:/config
|
|
- /data/nfs/Baxter/Data/Usenet/downloads:/downloads:shared
|
|
- /data/nfs/Baxter:/Baxter:shared
|
|
environment:
|
|
- TZ=America/Chicago
|
|
- PGID=999
|
|
- PUID=1001
|
|
restart: unless-stopped
|