mirror of
https://github.com/acedanger/docker.git
synced 2025-12-06 01:10:11 -08:00
io specific docker-compose with full starr stack
This commit is contained in:
@@ -12,10 +12,9 @@ services:
|
|||||||
- 8888:8888/tcp # HTTP proxy
|
- 8888:8888/tcp # HTTP proxy
|
||||||
- 8388:8388/tcp # Shadowsocks
|
- 8388:8388/tcp # Shadowsocks
|
||||||
- 8388:8388/udp # Shadowsocks
|
- 8388:8388/udp # Shadowsocks
|
||||||
# - 8080:8080/tcp # sabnzbd webUI
|
- 8080:8080/tcp # sabnzbd webUI
|
||||||
- 8085:8085/tcp # sabnzbd webUI
|
|
||||||
volumes:
|
volumes:
|
||||||
- /vpn-gluetun:/gluetun
|
- gluetun_data:/gluetun
|
||||||
environment:
|
environment:
|
||||||
# See https://github.com/qdm12/gluetun/wiki
|
# See https://github.com/qdm12/gluetun/wiki
|
||||||
- VPN_SERVICE_PROVIDER=protonvpn
|
- VPN_SERVICE_PROVIDER=protonvpn
|
||||||
@@ -36,9 +35,63 @@ services:
|
|||||||
- PGID=1000
|
- PGID=1000
|
||||||
- TZ=America/New_York
|
- TZ=America/New_York
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/d/docker/sabnzbd/config:/config
|
- sabnzbd_data/config:/config
|
||||||
- /mnt/d/media/downloads/sabnzbd/complete:/downloads
|
- starr_download/complete:/downloads
|
||||||
- /mnt/d/media/downloads/sabnzbd/incomplete:/incomplete-downloads
|
- starr_download/incomplete:/incomplete-downloads
|
||||||
# network_mode: "service:gluetun" forces sabnzbd to connect to the internet through the VPN defined in the gluetun container above
|
# network_mode: "service:gluetun" forces sabnzbd to connect to the internet through the VPN defined in the gluetun container above
|
||||||
network_mode: "service:gluetun"
|
network_mode: "service:gluetun"
|
||||||
restart: always
|
restart: always
|
||||||
|
sonarr:
|
||||||
|
image: lscr.io/linuxserver/sonarr:latest
|
||||||
|
container_name: sonarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=America/New_York
|
||||||
|
volumes:
|
||||||
|
- starr_data/sonarr/config:/config
|
||||||
|
- /mnt/share/media/tv:/tv #optional
|
||||||
|
- starr_download/complete:/downloads #optional
|
||||||
|
ports:
|
||||||
|
- 8989:8989
|
||||||
|
restart: always
|
||||||
|
radarr:
|
||||||
|
image: lscr.io/linuxserver/radarr:latest
|
||||||
|
container_name: radarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=America/New_York
|
||||||
|
volumes:
|
||||||
|
- starr_data/radarr/config:/config
|
||||||
|
- /mnt/share/media/movies:/movies #optional
|
||||||
|
- starr_download/complete:/downloads #optional
|
||||||
|
ports:
|
||||||
|
- 7878:7878
|
||||||
|
restart: always
|
||||||
|
lidarr:
|
||||||
|
image: lscr.io/linuxserver/lidarr:latest
|
||||||
|
container_name: lidarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=America/New_York
|
||||||
|
volumes:
|
||||||
|
- starr_data/lidarr/config:/config
|
||||||
|
- /mnt/share/media/music:/music #optional
|
||||||
|
- starr_download/complete:/downloads #optional
|
||||||
|
ports:
|
||||||
|
- 8686:8686
|
||||||
|
restart: always
|
||||||
|
prowlarr:
|
||||||
|
image: lscr.io/linuxserver/prowlarr:develop
|
||||||
|
container_name: prowlarr
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=America/New_York
|
||||||
|
volumes:
|
||||||
|
- starr_data/prowlarr/config:/config
|
||||||
|
ports:
|
||||||
|
- 9696:9696
|
||||||
|
restart: unless-stopped
|
||||||
|
|||||||
Reference in New Issue
Block a user