|
|
|
|
|
by pierat
900 days ago
|
|
Id highly discourage Plex. They're just as predatory... and they leak all sorts of data to their servers. Who knows who'd find that valuable... But what sort of a pie-rat would I be without a recommendation? https://github.com/AdrienPoupa/docker-compose-nas This sets up all the Arrs, VPN for torrenting and sends qbittorrent through VPN, and Jellyfin (media server), and loads more. Gotta configure the docker compose and paths, but it's not that bad. I also got it to work with ProtonVPN, killswitch and all: protonvpn:
container_name: protonvpn
image: ghcr.io/tprasadtp/protonwire:latest
init: true
restart: always
environment:
PROTONVPN_SERVER: "SERVER IDENTIFIER"
WIREGUARD_PRIVATE_KEY: "ITS PRIVATE :)"
IPCHECK_URL: https://protonwire-api.vercel.app/v1/client/ip
IPCHECK_INTERVAL: 60
SKIP_DNS_CONFIG: false
DEBUG: "0"
KILL_SWITCH: "1"
cap_add:
- NET_ADMIN
sysctls:
net.ipv4.conf.all.rp_filter: 2
net.ipv6.conf.all.disable_ipv6: 1
volumes:
- type: tmpfs
target: /tmp
ports:
- (fill these with ports you need to VPN so you can access the admin, like Qbittorent)
healthcheck:
test: ping -c 1 www.google.com || exit 1
interval: 30s
timeout: 10s
retries: 3
|
|