Add gotify and downloads folder support

This commit is contained in:
Colin Hebert
2022-12-31 08:14:58 +01:00
parent bb62bb0226
commit da5c4b5d3c

View File

@@ -5,9 +5,12 @@ services:
image: linuxserver/mylar3
networks:
- traefik
- gotify
volumes:
- mylar_config:/config/
- comics:/comics
- torrents_completed:/downloads/torrents
- usenet_completed:/downloads/usenet
restart: unless-stopped
labels:
traefik.enable: true
@@ -17,9 +20,12 @@ services:
image: linuxserver/lazylibrarian
networks:
- traefik
- gotify
volumes:
- lazylibrarian_config:/config/
- books:/books
- torrents_completed:/downloads/torrents
- usenet_completed:/downloads/usenet
restart: unless-stopped
labels:
traefik.enable: true
@@ -29,9 +35,12 @@ services:
image: linuxserver/sonarr
networks:
- traefik
- gotify
volumes:
- sonarr_config:/config/
- tv:/tv
- torrents_completed:/downloads/torrents
- usenet_completed:/downloads/usenet
restart: unless-stopped
labels:
traefik.enable: true
@@ -41,9 +50,12 @@ services:
image: linuxserver/radarr
networks:
- traefik
- gotify
volumes:
- radarr_config:/config/
- movies:/movies
- torrents_completed:/downloads/torrents
- usenet_completed:/downloads/usenet
restart: unless-stopped
labels:
traefik.enable: true
@@ -53,6 +65,7 @@ services:
image: linuxserver/bazarr
networks:
- traefik
- gotify
volumes:
- bazarr_config:/config/
- movies:/movies
@@ -62,7 +75,6 @@ services:
traefik.enable: true
traefik.http.routers.bazarr.rule: HostRegexp(`bazarr{subdomain:(\.[a-z0-9-]+)?}.dedicated.contact`)
networks:
gotify:
external: true
@@ -79,6 +91,11 @@ volumes:
tv:
external: true
torrents_completed:
external: true
usenet_completed:
external: true
mylar_config:
driver_opts:
type: none