

Yeah totally. It seems like a common take in Germany that in order for the State to be seen as a “good” State and no longer Nazi, Germans must support Israel no matter what. They don’t want to be seen as Nazis any more, after all.
But what about when that unconditional support means repressing your own citizens who criticize Israel? That’s authoritarianism, plain and simple.
And how is unconditional support for a genocidal Israeli ethnostate that is currently busy killing all their non-Jewish neighbours meant to make the German state seem less Nazi? Hint: it doesn’t. It looks to me like they’ve just switched focus from killing Jews to helping Zionists kill brown people.
Germany really needs to move on from the excuse of servicing war guilt from 80 years ago, and start actually doing the right thing by withdrawing it’s support for Israel.
























Here another option using wireguard with protonvpn and a docker extension to update the proton port forwarding port.
You would just need to update the volume mounts per your system.
# docker-compose.yml gluetun: image: qmcgaw/gluetun:latest container_name: gluetun cap_add: - NET_ADMIN environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} - VPN_SERVICE_PROVIDER=protonvpn - SERVER_COUNTRIES=Canada - VPN_TYPE=wireguard - WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY} - VPN_PORT_FORWARDING=on - PORT_FORWARD_ONLY=on ports: - 8888:8888 # Gluetun HTTP proxy port - 8000:8000 # Gluetun HTTP control server - 8080:8080 # qBittorrent WebUI port volumes: - /docker/appdata/gluetun:/config - /docker/appdata/gluetun/config.toml:/gluetun/auth/config.toml restart: unless-stopped qbittorrent: image: lscr.io/linuxserver/qbittorrent:latest container_name: qbittorrent environment: - PUID=${PUID} - PGID=${PGID} - TZ=${TZ} - WEBUI_PORT=8080 - DOCKER_MODS=ghcr.io/t-anc/gsp-qbittorent-gluetun-sync-port-mod:main|ghcr.io/vuetorrent/vuetorrent-lsio-mod:latest - GSP_GTN_API_KEY=YOUR_DOCKERMOD_APIKEY healthcheck: test: ["CMD", "curl", "--fail", "--silent", "http://localhost:8080/"] interval: 30s timeout: 10s retries: 5 depends_on: gluetun: condition: service_healthy # Wait for VPN to be up first volumes: - /docker/appdata/qbittorrent:/config - ${DATA_PATH}:/data restart: unless-stopped network_mode: service:gluetun# config.toml for docker extension [[roles]] name = "t-anc/GSP-Qbittorent-Gluetun-sync-port-mod" routes = ["GET /v1/portforward"] auth = "apikey" apikey = "YOUR_DOCKERMOD_APIKEY"This setup works flawlessly for me, even with Proton switching ports each time I reconnect.