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