Set up prowlarr and downloads network

This commit is contained in:
Colin Hebert
2022-12-31 08:32:06 +01:00
parent da5c4b5d3c
commit 34d7f2e931
3 changed files with 29 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ services:
networks:
- traefik
- gotify
- downloads
volumes:
- mylar_config:/config/
- comics:/comics
@@ -21,6 +22,7 @@ services:
networks:
- traefik
- gotify
- downloads
volumes:
- lazylibrarian_config:/config/
- books:/books
@@ -36,6 +38,7 @@ services:
networks:
- traefik
- gotify
- downloads
volumes:
- sonarr_config:/config/
- tv:/tv
@@ -51,6 +54,7 @@ services:
networks:
- traefik
- gotify
- downloads
volumes:
- radarr_config:/config/
- movies:/movies
@@ -76,9 +80,11 @@ services:
traefik.http.routers.bazarr.rule: HostRegexp(`bazarr{subdomain:(\.[a-z0-9-]+)?}.dedicated.contact`)
networks:
traefik:
external: true
gotify:
external: true
traefik:
downloads:
external: true
volumes:

View File

@@ -9,10 +9,31 @@ services:
- torrents_completed:/torrents/completed
- usenet:/usenet
- usenet_completed:/usenet/completed
prowlarr:
image: linuxserver/prowlarr:develop #TODO: Move to a stable version!
networks:
- traefik
- gotify
- downloads
volumes:
- prowlarr:/config
restart: unless-stopped
labels:
traefik.enable: true
traefik.http.routers.prowlarr.rule: HostRegexp(`prowlarr{subdomain:(\.[a-z0-9-]+)?}.dedicated.contact`)
# TODO:
# NZBGet
# Transmission
networks:
downloads:
name: downloads
traefik:
external: true
gotify:
external: true
volumes:
torrents_completed:
name: torrents_completed

View File

@@ -21,6 +21,7 @@ services:
networks:
gotify:
name: gotify
traefik:
external: true