Hi!
I'm riding a very steep learning curve today, but now I'm running into a problem with Radarr.
While following the installation guide for YAMS today (btw amazing! Thank you!), I tried to set up Prowlarr and couldn't connect to any indexers. I got different error messages (can't reproduce now). I followed the guide of running Prowlarr behind Gluetun (https://yams.media/advanced/prowlarr-behind-vpn/) and that worked like a charm!
I finished the setup and wanted to try my first download, but I couldn't get any results in Radarr and Sonarr. Error: Invalid response received from SkyHook. Resource temporarily unavailable (skyhook.sonarr.tv:443).
Wannabe-smart as I am I did the same trick and ran Radarr behind Gluetun, and now I get all the results!
However, I now have to reconnect Prowlarr again. I tried replacing the yams network IP with my host IP, put there is a connection timeout. Any solution for this? I use Proton VPN Plus.
Thanks a ton it advance from this massive newb.
Code: Select all
radarr:
image: lscr.io/linuxserver/radarr
container_name: radarr
network_mode: "service:gluetun"
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${MEDIA_DIRECTORY}:/data
- ${INSTALL_DIRECTORY}/config/radarr:/config
# ports:
# - 7878:7878
restart: unless-stopped
# networks:
# yams_network:
# ipv4_address: 172.60.0.14
prowlarr:
image: lscr.io/linuxserver/prowlarr
container_name: prowlarr
network_mode: "service:gluetun"
environment:
- PUID=${PUID}
- PGID=${PGID}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${INSTALL_DIRECTORY}/config/prowlarr:/config
# ports:
# - 9696:9696
restart: unless-stopped
# networks:
# yams_network:
# ipv4_address: 172.60.0.17
# Gluetun is our VPN, so you can download torrents safely
gluetun:
image: qmcgaw/gluetun:v3
container_name: gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
- 8003:8000/tcp # Admin
- 8080:8080/tcp # gluetun
- 8081:8081/tcp # gluetun
- 9696:9696/tcp # prowlarr
- 7878:7878/tcp # radarr
environment:
- VPN_SERVICE_PROVIDER=${VPN_SERVICE}
- VPN_TYPE=openvpn
- OPENVPN_USER=${VPN_USER}
- OPENVPN_PASSWORD=${VPN_PASSWORD}
- OPENVPN_CIPHERS=AES-256-GCM
- PORT_FORWARD_ONLY=on
- VPN_PORT_FORWARDING=on
- FIREWALL_OUTBOUND_SUBNETS=172.60.0.0/24
restart: unless-stopped
networks:
yams_network:
ipv4_address: 172.60.0.18