This commit is contained in:
29
stacks/media/emby/stack.yml
Normal file
29
stacks/media/emby/stack.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
services:
|
||||
emby:
|
||||
image: lscr.io/linuxserver/emby:latest
|
||||
networks:
|
||||
- homelab
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /mnt/swarm-data/emby:/config
|
||||
- /mnt/data/media/tv:/data/tvshows
|
||||
- /mnt/data/media/movies:/data/movies
|
||||
ports:
|
||||
- 8096:8096
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl", "-f", "http://localhost:8096/web/index.html" ]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 5
|
||||
start_period: 120s
|
||||
deploy:
|
||||
replicas: 1
|
||||
placement:
|
||||
constraints:
|
||||
- node.hostname == p4
|
||||
networks:
|
||||
homelab:
|
||||
external: true
|
||||
23
stacks/media/notifiarr/stack.yml
Normal file
23
stacks/media/notifiarr/stack.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
services:
|
||||
notifiarr:
|
||||
image: golift/notifiarr:latest
|
||||
hostname: notifiarr
|
||||
networks:
|
||||
- homelab
|
||||
ports:
|
||||
- "5454:5454"
|
||||
volumes:
|
||||
- /mnt/swarm-data/Notifiarr:/config
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
environment:
|
||||
- TZ=America/New_York
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
deploy:
|
||||
replicas: 1
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == worker
|
||||
networks:
|
||||
homelab:
|
||||
external: true
|
||||
27
stacks/media/prowlarr/stack.yml
Normal file
27
stacks/media/prowlarr/stack.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
services:
|
||||
prowlarr:
|
||||
image: lscr.io/linuxserver/prowlarr:latest
|
||||
networks:
|
||||
- homelab
|
||||
ports:
|
||||
- 9696:9696
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /mnt/swarm-data/prowlarr:/config
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl", "-f", "http://localhost:9696/ping" ]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 60s
|
||||
deploy:
|
||||
replicas: 1
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == worker
|
||||
networks:
|
||||
homelab:
|
||||
external: true
|
||||
28
stacks/media/radarr/stack.yml
Normal file
28
stacks/media/radarr/stack.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
services:
|
||||
radarr:
|
||||
image: lscr.io/linuxserver/radarr:latest
|
||||
networks:
|
||||
- homelab
|
||||
ports:
|
||||
- 7878:7878
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /mnt/swarm-data/radarr:/config
|
||||
- /mnt/data:/data
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl", "-f", "http://localhost:7878/ping" ]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 60s
|
||||
deploy:
|
||||
replicas: 1
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == worker
|
||||
networks:
|
||||
homelab:
|
||||
external: true
|
||||
28
stacks/media/sabnzbd/stack.yml
Normal file
28
stacks/media/sabnzbd/stack.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
22
stacks/media/sonarr/stack.yml
Normal file
22
stacks/media/sonarr/stack.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
services:
|
||||
sonarr:
|
||||
image: lscr.io/linuxserver/sonarr:latest
|
||||
networks:
|
||||
- homelab
|
||||
ports:
|
||||
- 8989:8989
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /mnt/swarm-data/sonarr:/config
|
||||
- /mnt/data:/data
|
||||
deploy:
|
||||
replicas: 1
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == worker
|
||||
networks:
|
||||
homelab:
|
||||
external: true
|
||||
Reference in New Issue
Block a user