

I’ve seen Riders of Justice but not The Last Viking yet, since I didn’t manage to go to the cinema. But I’ll definetly will watch it once the blu ray is released


I’ve seen Riders of Justice but not The Last Viking yet, since I didn’t manage to go to the cinema. But I’ll definetly will watch it once the blu ray is released


Thank you so much for the suggestions. I will definitely check them out. I also like Clue, which plays in a castle and Murder by Death. More towards horror is Horror Express and The Old Dark House.
Damn I love these old movies with the confined spaces.


I hated the antagonist so much it made my blood boil.




This is my setup
sabnzbd:
...
restart: unless-stopped
network_mode: "service:gluetun"
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
environment:
- VPN_SERVICE_PROVIDER=custom
- VPN_TYPE=wireguard
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 9090:8080 # SABnzbd webui port forwarding
volumes:
- ./Wireguard/wg0.conf:/gluetun/wireguard/wg0.conf:ro
restart: unless-stopped
Note how i explicitly tell sabnzbd container to use gluetun as a network.
Afaik, with your setup you simply run both containers in the same network so that both can reach each other.


What do your docker logs mention? Especially regarding sab ans deluge?


Usually you should be able to download a wg0.conf file from your vpn provider. It basically contains all the data that you provided via env var in a specific format.
Note: the server address has to be an IP address since gluetun won’t resolve addresses (see here).


You could maybe try using the wg0.conf and mount this insteas. Here is how I set it up (works with proton and windscribe)
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
environment:
- VPN_SERVICE_PROVIDER=custom
- VPN_TYPE=wireguard
devices:
- /dev/net/tun:/dev/net/tun
ports:
- 9090:8080 # SABnzbd webui port forwarding
volumes:
- ./Wireguard/wg0.conf:/gluetun/wireguard/wg0.conf:ro
restart: unless-stopped
Thanks for letting me know. I jusz checked and it seems to be the 8th of May in Germany