moved indexers from vpn and added huntarr
This commit is contained in:
110
compose.yaml
110
compose.yaml
@@ -22,11 +22,11 @@ services:
|
|||||||
# - 6881:6881
|
# - 6881:6881
|
||||||
# - 6881:6881/udp
|
# - 6881:6881/udp
|
||||||
# prowlarr ports
|
# prowlarr ports
|
||||||
- 9696:9696
|
# - 9696:9696
|
||||||
# sbnzbd ports
|
# sbnzbd ports
|
||||||
- 8080:8080
|
- 8080:8080
|
||||||
# flaresolverr ports
|
# flaresolverr ports
|
||||||
- 8191:8191
|
# - 8191:8191
|
||||||
# # notifiarr ports
|
# # notifiarr ports
|
||||||
# - 5454:5454
|
# - 5454:5454
|
||||||
volumes:
|
volumes:
|
||||||
@@ -51,7 +51,6 @@ services:
|
|||||||
- TZ="Europe/Berlin"
|
- TZ="Europe/Berlin"
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/configs/autobrr:/config
|
- /mnt/configs/autobrr:/config
|
||||||
# - nfs-autobrr-config:/config
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
# qbittorrent:
|
# qbittorrent:
|
||||||
@@ -104,8 +103,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /mnt/configs/radarr:/config
|
- /mnt/configs/radarr:/config
|
||||||
- /mnt/download:/downloads
|
- /mnt/download:/downloads
|
||||||
# - nfs-radarr-config:/config
|
|
||||||
# - nfs-torrent-download:/downloads
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
radarr-anime:
|
radarr-anime:
|
||||||
@@ -123,8 +120,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /mnt/configs/radarr-anime:/config
|
- /mnt/configs/radarr-anime:/config
|
||||||
- /mnt/download:/downloads
|
- /mnt/download:/downloads
|
||||||
# - nfs-radarr-anime-config:/config
|
|
||||||
# - nfs-torrent-download:/downloads
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
sonarr:
|
sonarr:
|
||||||
@@ -140,8 +135,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /mnt/configs/sonarr:/config
|
- /mnt/configs/sonarr:/config
|
||||||
- /mnt/download:/downloads
|
- /mnt/download:/downloads
|
||||||
# - nfs-sonarr-config:/config
|
|
||||||
# - nfs-torrent-download:/downloads
|
|
||||||
ports:
|
ports:
|
||||||
- 8989:8989
|
- 8989:8989
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -159,8 +152,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /mnt/configs/sonarr-anime:/config
|
- /mnt/configs/sonarr-anime:/config
|
||||||
- /mnt/download:/downloads
|
- /mnt/download:/downloads
|
||||||
# - nfs-sonarr-anime-config:/config
|
|
||||||
# - nfs-torrent-download:/downloads
|
|
||||||
ports:
|
ports:
|
||||||
- 8990:8989
|
- 8990:8989
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -168,17 +159,18 @@ services:
|
|||||||
prowlarr:
|
prowlarr:
|
||||||
image: linuxserver/prowlarr:latest
|
image: linuxserver/prowlarr:latest
|
||||||
container_name: prowlarr
|
container_name: prowlarr
|
||||||
depends_on:
|
# depends_on:
|
||||||
vpn:
|
# vpn:
|
||||||
condition: service_healthy
|
# condition: service_healthy
|
||||||
network_mode: service:vpn
|
# network_mode: service:vpn
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/configs/prowlarr:/config
|
- /mnt/configs/prowlarr:/config
|
||||||
# - nfs-prowlarr-config:/config
|
ports:
|
||||||
|
- 9696:9696
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
jellyseerr:
|
jellyseerr:
|
||||||
@@ -193,7 +185,6 @@ services:
|
|||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/configs/jellyseerr:/app/config
|
- /mnt/configs/jellyseerr:/app/config
|
||||||
# - nfs-jellyseerr-config:/app/config
|
|
||||||
ports:
|
ports:
|
||||||
- 5055:5055
|
- 5055:5055
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -228,8 +219,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /mnt/configs/bazarr:/config
|
- /mnt/configs/bazarr:/config
|
||||||
- /mnt/download:/downloads
|
- /mnt/download:/downloads
|
||||||
# - nfs-bazarr-config:/config
|
|
||||||
# - nfs-torrent-download:/downloads
|
|
||||||
ports:
|
ports:
|
||||||
- 6767:6767
|
- 6767:6767
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -237,13 +226,15 @@ services:
|
|||||||
flaresolverr:
|
flaresolverr:
|
||||||
image: ghcr.io/flaresolverr/flaresolverr:latest
|
image: ghcr.io/flaresolverr/flaresolverr:latest
|
||||||
container_name: flaresolverr
|
container_name: flaresolverr
|
||||||
depends_on:
|
# depends_on:
|
||||||
vpn:
|
# vpn:
|
||||||
condition: service_healthy
|
# condition: service_healthy
|
||||||
network_mode: service:vpn
|
# network_mode: service:vpn
|
||||||
environment:
|
environment:
|
||||||
- CAPTCHA_SOLVER=none
|
- CAPTCHA_SOLVER=none
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
|
ports:
|
||||||
|
- 8191:8191
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
notifiarr:
|
notifiarr:
|
||||||
@@ -262,70 +253,17 @@ services:
|
|||||||
- 5454:5454
|
- 5454:5454
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/configs/notifiarr:/config
|
- /mnt/configs/notifiarr:/config
|
||||||
# - nfs-notifiarr-config:/config
|
|
||||||
|
|
||||||
# volumes:
|
|
||||||
# nfs-autobrr-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/autobrr"
|
|
||||||
# nfs-qbittorrent-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/qbittorrent"
|
|
||||||
# nfs-torrent-download:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/slow/download"
|
|
||||||
# nfs-radarr-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/radarr"
|
|
||||||
# nfs-sonarr-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/sonarr"
|
|
||||||
# nfs-prowlarr-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/prowlarr"
|
|
||||||
# nfs-recommendarr-data:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/slow/recommendarr-data"
|
|
||||||
# nfs-jellyseerr-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/jellyseerr"
|
|
||||||
# nfs-bazarr-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/bazarr"
|
|
||||||
# nfs-radarr-anime-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/radarr-anime"
|
|
||||||
# nfs-sonarr-anime-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/sonarr-anime"
|
|
||||||
# nfs-notifiarr-config:
|
|
||||||
# driver_opts:
|
|
||||||
# type: "nfs"
|
|
||||||
# o: "addr=10.110.10.20,nolock,soft,nfsvers=3"
|
|
||||||
# device: ":/mnt/fast/configs/notifiarr"
|
|
||||||
|
|
||||||
|
huntarr:
|
||||||
|
image: huntarr/huntarr:latest
|
||||||
|
container_name: huntarr
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "9705:9705"
|
||||||
|
volumes:
|
||||||
|
- /mnt/configs/huntarr:/config
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
arrnet:
|
arrnet:
|
||||||
|
|||||||
Reference in New Issue
Block a user