skoell13

u/skoell13@feddit.org
4 posts · 142 comments

Recent posts

Recent comments

on Movies · c/memes · 2 pts · 78d

I actually enjoyed Hogfather but haven't read the book.

on DogNZB Help · c/usenet · 1 pts · 82d

Can you give me an example what you are looking for so I can check my trackers?

  • M: Really great acting and camera work
  • AtatĂĽrk: I was really surprised on the great production since I've never really seen a Turkish movie
  • Das Boot: Heard so mich about it but never really came around to wazch it until I has a long train ride. I really loved it. Make sure that you watch the series instead of the movie (it's a longer cut and contains everything that's in the movie)
  • Mr K: Really Kafkaesque. I don't get why it's scored so low.
  • The menu: Great acting amd cool story
  • Late night with the devil: I rellay like films taking place in one confined environment.
  • Adam's Apples: I like Mads Mikkelsen and I like the movies of that director.
  • Bullet Train: again a confined place, funny and action driven movie that's easy to watch.
  • The Rocky Horror Picture show: Just saw this at the beginning of this month for the verx first time at a cinema that had a whole participation bag. It was really fun how the audience shouted stuff, threw rice,.. Had sometimes a bit trouble to follow the movoe while preparing for the next thing to do (it's easier if you already know the movie) but still would do it again.
on *Permanently Deleted* · c/selfhosted · 2 pts · 112d

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.

on *Permanently Deleted* · c/selfhosted · 2 pts · 112d

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).

on *Permanently Deleted* · c/selfhosted · 2 pts · 113d

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