How to setup Nord VPN with qbittorrent on TrueNAS Scale using Docker

Описание к видео How to setup Nord VPN with qbittorrent on TrueNAS Scale using Docker

In this video I have explained how you can setup any VPN client to download files using torrent client on TrueNAS Scale using Docker containers.

Docker Image:
Use qmcgaw/gluetun as the base image

FROM qmcgaw/gluetun:latest

Install necessary packages for qbittorrent

RUN apk update && \
apk add qbittorrent-nox

Add your NordVPN credentials and configuration

ENV VPN_SERVICE_PROVIDER=nordvpn
ENV OPENVPN_USER=username
ENV OPENVPN_PASSWORD=password
ENV SERVER_REGIONS=Canada
ENV VPN_TYPE=openvpn

Copy entrypoint script to combine both services

COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

Ensure /gluetun-entrypoint has execute permissions

RUN chmod +x /gluetun-entrypoint

Expose the necessary ports

EXPOSE 30078 8989 8118 9091 6881 6881/udp

Set the entrypoint

ENTRYPOINT \["/bin/sh", "/entrypoint.sh"\]

Комментарии

Информация по комментариям в разработке