Skip to content

Commit

Permalink
fix: 📦 un-deprecate vpn containers
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Nemchik <[email protected]>
  • Loading branch information
nemchik committed Apr 28, 2024
1 parent 9129e98 commit 6bb659d
Show file tree
Hide file tree
Showing 24 changed files with 111 additions and 103 deletions.
3 changes: 3 additions & 0 deletions compose/.apps/delugevpn/delugevpn.aarch64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
services:
delugevpn:
image: ghcr.io/binhex/arch-delugevpn:${DELUGEVPN_TAG}
16 changes: 12 additions & 4 deletions compose/.apps/delugevpn/delugevpn.labels.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
services:
delugevpn:
labels:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use Deluge with PrivoxyVPN"
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Deluge with PrivoxyVPN"
com.dockstarter.appinfo.nicename: "DelugeVPN"
com.dockstarter.appvars.delugevpn_enabled: "false"
com.dockstarter.appvars.delugevpn_environment_enable_privoxy: "no"
com.dockstarter.appvars.delugevpn_environment_lan_network: "192.168.x.x/24"
com.dockstarter.appvars.delugevpn_environment_name_servers: "1.1.1.1,8.8.8.8"
com.dockstarter.appvars.delugevpn_environment_vpn_client: "openvpn"
com.dockstarter.appvars.delugevpn_environment_vpn_enable: "no"
com.dockstarter.appvars.delugevpn_environment_vpn_input_ports: ""
com.dockstarter.appvars.delugevpn_environment_vpn_options: ""
com.dockstarter.appvars.delugevpn_environment_vpn_output_ports: ""
com.dockstarter.appvars.delugevpn_environment_vpn_pass: "your-vpn-pass"
com.dockstarter.appvars.delugevpn_environment_vpn_prov: "custom"
com.dockstarter.appvars.delugevpn_environment_vpn_user: "your-vpn-user"
com.dockstarter.appvars.delugevpn_network_mode: ""
com.dockstarter.appvars.delugevpn_port_51413: "51413"
com.dockstarter.appvars.delugevpn_port_58846: "58846"
com.dockstarter.appvars.delugevpn_port_58946: "58946"
com.dockstarter.appvars.delugevpn_port_6881: "6881"
com.dockstarter.appvars.delugevpn_port_8112: "8112"
com.dockstarter.appvars.delugevpn_port_8118: "8118"
com.dockstarter.appvars.delugevpn_restart: "unless-stopped"
Expand Down
3 changes: 0 additions & 3 deletions compose/.apps/delugevpn/delugevpn.ports.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
services:
delugevpn:
ports:
- ${DELUGEVPN_PORT_51413}:51413
- ${DELUGEVPN_PORT_51413}:51413/udp
- ${DELUGEVPN_PORT_58846}:58846
- ${DELUGEVPN_PORT_58946}:58946
- ${DELUGEVPN_PORT_6881}:6881
- ${DELUGEVPN_PORT_6881}:6881/udp
- ${DELUGEVPN_PORT_8112}:8112
- ${DELUGEVPN_PORT_8118}:8118
20 changes: 10 additions & 10 deletions compose/.apps/delugevpn/delugevpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,19 @@ services:
container_name: delugevpn
environment:
- ENABLE_PRIVOXY=${DELUGEVPN_ENVIRONMENT_ENABLE_PRIVOXY}
- LAN_NETWORK=${LAN_NETWORK}
- NAME_SERVERS=${NS1},${NS2}
- LAN_NETWORK=${DELUGEVPN_ENVIRONMENT_LAN_NETWORK}
- NAME_SERVERS=${DELUGEVPN_ENVIRONMENT_NAME_SERVERS}
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
- VPN_CLIENT=${VPN_CLIENT}
- VPN_ENABLED=${VPN_ENABLE}
- VPN_OPTIONS=${VPN_OPTIONS}
- VPN_PASS=${VPN_PASS}
- VPN_PROV=${VPN_PROV}
- VPN_USER=${VPN_USER}
- VPN_CLIENT=${DELUGEVPN_ENVIRONMENT_VPN_CLIENT}
- VPN_ENABLED=${DELUGEVPN_ENVIRONMENT_VPN_ENABLE}
- VPN_INPUT_PORTS=${DELUGEVPN_ENVIRONMENT_VPN_INPUT_PORTS}
- VPN_OPTIONS=${DELUGEVPN_ENVIRONMENT_VPN_OPTIONS}
- VPN_OUTPUT_PORTS=${DELUGEVPN_ENVIRONMENT_VPN_OUTPUT_PORTS}
- VPN_PASS=${DELUGEVPN_ENVIRONMENT_VPN_PASS}
- VPN_PROV=${DELUGEVPN_ENVIRONMENT_VPN_PROV}
- VPN_USER=${DELUGEVPN_ENVIRONMENT_VPN_USER}
privileged: true
restart: ${DELUGEVPN_RESTART}
sysctls:
Expand All @@ -25,5 +27,3 @@ services:
- /etc/localtime:/etc/localtime:ro
- ${DOCKER_VOLUME_CONFIG}/delugevpn:/config
- ${DOCKER_VOLUME_STORAGE}:/storage
- ${VPN_VOLUME_OVPNDIR}:/config/openvpn
- ${VPN_VOLUME_WGDIR}:/config/wireguard
2 changes: 1 addition & 1 deletion compose/.apps/nzbget/nzbget.aarch64.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
services:
nzbget:
image: lscr.io/linuxserver/nzbget:${NZBGET_TAG}
image: ghcr.io/nzbgetcom/nzbget:${NZBGET_TAG}
4 changes: 2 additions & 2 deletions compose/.apps/nzbget/nzbget.labels.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
services:
nzbget:
labels:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use SABnzbd"
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Efficient usenet downloader"
com.dockstarter.appinfo.nicename: "NZBGet"
com.dockstarter.appvars.nzbget_enabled: "false"
com.dockstarter.appvars.nzbget_network_mode: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/nzbget/nzbget.x86_64.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
services:
nzbget:
image: lscr.io/linuxserver/nzbget:${NZBGET_TAG}
image: ghcr.io/nzbgetcom/nzbget:${NZBGET_TAG}
14 changes: 12 additions & 2 deletions compose/.apps/nzbgetvpn/nzbgetvpn.labels.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
services:
nzbgetvpn:
labels:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use SABnzbd with PrivoxyVPN"
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "NZBGet with PrivoxyVPN"
com.dockstarter.appinfo.nicename: "NZBGetVPN"
com.dockstarter.appvars.nzbgetvpn_enabled: "false"
com.dockstarter.appvars.nzbgetvpn_environment_enable_privoxy: "no"
com.dockstarter.appvars.nzbgetvpn_environment_lan_network: "192.168.x.x/24"
com.dockstarter.appvars.nzbgetvpn_environment_name_servers: "1.1.1.1,8.8.8.8"
com.dockstarter.appvars.nzbgetvpn_environment_vpn_client: "openvpn"
com.dockstarter.appvars.nzbgetvpn_environment_vpn_enable: "no"
com.dockstarter.appvars.nzbgetvpn_environment_vpn_input_ports: ""
com.dockstarter.appvars.nzbgetvpn_environment_vpn_options: ""
com.dockstarter.appvars.nzbgetvpn_environment_vpn_output_ports: ""
com.dockstarter.appvars.nzbgetvpn_environment_vpn_pass: "your-vpn-pass"
com.dockstarter.appvars.nzbgetvpn_environment_vpn_prov: "custom"
com.dockstarter.appvars.nzbgetvpn_environment_vpn_user: "your-vpn-user"
com.dockstarter.appvars.nzbgetvpn_network_mode: ""
com.dockstarter.appvars.nzbgetvpn_port_6789: "6789"
com.dockstarter.appvars.nzbgetvpn_port_8118: "8118"
Expand Down
20 changes: 10 additions & 10 deletions compose/.apps/nzbgetvpn/nzbgetvpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,19 @@ services:
container_name: nzbgetvpn
environment:
- ENABLE_PRIVOXY=${NZBGETVPN_ENVIRONMENT_ENABLE_PRIVOXY}
- LAN_NETWORK=${LAN_NETWORK}
- NAME_SERVERS=${NS1},${NS2}
- LAN_NETWORK=${NZBGETVPN_ENVIRONMENT_LAN_NETWORK}
- NAME_SERVERS=${NZBGETVPN_ENVIRONMENT_NAME_SERVERS}
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
- VPN_CLIENT=${VPN_CLIENT}
- VPN_ENABLED=${VPN_ENABLE}
- VPN_OPTIONS=${VPN_OPTIONS}
- VPN_PASS=${VPN_PASS}
- VPN_PROV=${VPN_PROV}
- VPN_USER=${VPN_USER}
- VPN_CLIENT=${NZBGETVPN_ENVIRONMENT_VPN_CLIENT}
- VPN_ENABLED=${NZBGETVPN_ENVIRONMENT_VPN_ENABLE}
- VPN_INPUT_PORTS=${NZBGETVPN_ENVIRONMENT_VPN_INPUT_PORTS}
- VPN_OPTIONS=${NZBGETVPN_ENVIRONMENT_VPN_OPTIONS}
- VPN_OUTPUT_PORTS=${NZBGETVPN_ENVIRONMENT_VPN_OUTPUT_PORTS}
- VPN_PASS=${NZBGETVPN_ENVIRONMENT_VPN_PASS}
- VPN_PROV=${NZBGETVPN_ENVIRONMENT_VPN_PROV}
- VPN_USER=${NZBGETVPN_ENVIRONMENT_VPN_USER}
privileged: true
restart: ${NZBGETVPN_RESTART}
sysctls:
Expand All @@ -25,5 +27,3 @@ services:
- /etc/localtime:/etc/localtime:ro
- ${DOCKER_VOLUME_CONFIG}/nzbgetvpn:/config
- ${DOCKER_VOLUME_STORAGE}:/storage
- ${VPN_VOLUME_OVPNDIR}:/config/openvpn
- ${VPN_VOLUME_WGDIR}:/config/wireguard
3 changes: 3 additions & 0 deletions compose/.apps/qbittorrentvpn/qbittorrentvpn.aarch64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
services:
qbittorrentvpn:
image: ghcr.io/binhex/arch-qbittorrentvpn:${QBITTORRENTVPN_TAG}
15 changes: 12 additions & 3 deletions compose/.apps/qbittorrentvpn/qbittorrentvpn.labels.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
services:
qbittorrentvpn:
labels:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use qBittorrent PrivoxyVPN"
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "qBittorrent PrivoxyVPN"
com.dockstarter.appinfo.nicename: "qBittorrentVPN"
com.dockstarter.appvars.qbittorrentvpn_enabled: "false"
com.dockstarter.appvars.qbittorrentvpn_environment_enable_privoxy: "no"
com.dockstarter.appvars.qbittorrentvpn_environment_lan_network: "192.168.x.x/24"
com.dockstarter.appvars.qbittorrentvpn_environment_name_servers: "1.1.1.1,8.8.8.8"
com.dockstarter.appvars.qbittorrentvpn_environment_vpn_client: "openvpn"
com.dockstarter.appvars.qbittorrentvpn_environment_vpn_enable: "no"
com.dockstarter.appvars.qbittorrentvpn_environment_vpn_input_ports: ""
com.dockstarter.appvars.qbittorrentvpn_environment_vpn_options: ""
com.dockstarter.appvars.qbittorrentvpn_environment_vpn_output_ports: ""
com.dockstarter.appvars.qbittorrentvpn_environment_vpn_pass: "your-vpn-pass"
com.dockstarter.appvars.qbittorrentvpn_environment_vpn_prov: "custom"
com.dockstarter.appvars.qbittorrentvpn_environment_vpn_user: "your-vpn-user"
com.dockstarter.appvars.qbittorrentvpn_network_mode: ""
com.dockstarter.appvars.qbittorrentvpn_port_51413: "51413"
com.dockstarter.appvars.qbittorrentvpn_port_6881: "6881"
com.dockstarter.appvars.qbittorrentvpn_port_8080: "8080"
com.dockstarter.appvars.qbittorrentvpn_port_8118: "8118"
Expand Down
2 changes: 0 additions & 2 deletions compose/.apps/qbittorrentvpn/qbittorrentvpn.ports.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
services:
qbittorrentvpn:
ports:
- ${QBITTORRENTVPN_PORT_51413}:51413
- ${QBITTORRENTVPN_PORT_51413}:51413/udp
- ${QBITTORRENTVPN_PORT_6881}:6881
- ${QBITTORRENTVPN_PORT_6881}:6881/udp
- ${QBITTORRENTVPN_PORT_8080}:${QBITTORRENTVPN_PORT_8080}
Expand Down
20 changes: 10 additions & 10 deletions compose/.apps/qbittorrentvpn/qbittorrentvpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,19 @@ services:
container_name: qbittorrentvpn
environment:
- ENABLE_PRIVOXY=${QBITTORRENTVPN_ENVIRONMENT_ENABLE_PRIVOXY}
- LAN_NETWORK=${LAN_NETWORK}
- NAME_SERVERS=${NS1},${NS2}
- LAN_NETWORK=${QBITTORRENTVPN_ENVIRONMENT_LAN_NETWORK}
- NAME_SERVERS=${QBITTORRENTVPN_ENVIRONMENT_NAME_SERVERS}
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
- VPN_CLIENT=${VPN_CLIENT}
- VPN_ENABLED=${VPN_ENABLE}
- VPN_OPTIONS=${VPN_OPTIONS}
- VPN_PASS=${VPN_PASS}
- VPN_PROV=${VPN_PROV}
- VPN_USER=${VPN_USER}
- VPN_CLIENT=${QBITTORRENTVPN_ENVIRONMENT_VPN_CLIENT}
- VPN_ENABLED=${QBITTORRENTVPN_ENVIRONMENT_VPN_ENABLE}
- VPN_INPUT_PORTS=${QBITTORRENTVPN_ENVIRONMENT_VPN_INPUT_PORTS}
- VPN_OPTIONS=${QBITTORRENTVPN_ENVIRONMENT_VPN_OPTIONS}
- VPN_OUTPUT_PORTS=${QBITTORRENTVPN_ENVIRONMENT_VPN_OUTPUT_PORTS}
- VPN_PASS=${QBITTORRENTVPN_ENVIRONMENT_VPN_PASS}
- VPN_PROV=${QBITTORRENTVPN_ENVIRONMENT_VPN_PROV}
- VPN_USER=${QBITTORRENTVPN_ENVIRONMENT_VPN_USER}
- WEBUI_PORT=${QBITTORRENTVPN_PORT_8080}
privileged: true
restart: ${QBITTORRENTVPN_RESTART}
Expand All @@ -26,5 +28,3 @@ services:
- /etc/localtime:/etc/localtime:ro
- ${DOCKER_VOLUME_CONFIG}/qbittorrentvpn:/config
- ${DOCKER_VOLUME_STORAGE}:/storage
- ${VPN_VOLUME_OVPNDIR}:/config/openvpn
- ${VPN_VOLUME_WGDIR}:/config/wireguard
2 changes: 1 addition & 1 deletion compose/.apps/rtorrentvpn/rtorrentvpn.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
rtorrentvpn:
labels:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use qBittorrent with PrivoxyVPN"
com.dockstarter.appinfo.description: "(DEPRECATED) rTorrent with PrivoxyVPN"
com.dockstarter.appinfo.nicename: "rTorrentVPN"
com.dockstarter.appvars.rtorrentvpn_enabled: "false"
com.dockstarter.appvars.rtorrentvpn_environment_enable_autodl_irssi: "no"
Expand Down
14 changes: 12 additions & 2 deletions compose/.apps/sabnzbdvpn/sabnzbdvpn.labels.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
services:
sabnzbdvpn:
labels:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use SABnzbd with PrivoxyVPN"
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "SABnzbd with PrivoxyVPN"
com.dockstarter.appinfo.nicename: "SABnzbdVPN"
com.dockstarter.appvars.sabnzbdvpn_enabled: "false"
com.dockstarter.appvars.sabnzbdvpn_environment_enable_privoxy: "no"
com.dockstarter.appvars.sabnzbdvpn_environment_lan_network: "192.168.x.x/24"
com.dockstarter.appvars.sabnzbdvpn_environment_name_servers: "1.1.1.1,8.8.8.8"
com.dockstarter.appvars.sabnzbdvpn_environment_vpn_client: "openvpn"
com.dockstarter.appvars.sabnzbdvpn_environment_vpn_enable: "no"
com.dockstarter.appvars.sabnzbdvpn_environment_vpn_input_ports: ""
com.dockstarter.appvars.sabnzbdvpn_environment_vpn_options: ""
com.dockstarter.appvars.sabnzbdvpn_environment_vpn_output_ports: ""
com.dockstarter.appvars.sabnzbdvpn_environment_vpn_pass: "your-vpn-pass"
com.dockstarter.appvars.sabnzbdvpn_environment_vpn_prov: "custom"
com.dockstarter.appvars.sabnzbdvpn_environment_vpn_user: "your-vpn-user"
com.dockstarter.appvars.sabnzbdvpn_network_mode: ""
com.dockstarter.appvars.sabnzbdvpn_port_8080: "8080"
com.dockstarter.appvars.sabnzbdvpn_port_8090: "8090"
Expand Down
20 changes: 10 additions & 10 deletions compose/.apps/sabnzbdvpn/sabnzbdvpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,19 @@ services:
container_name: sabnzbdvpn
environment:
- ENABLE_PRIVOXY=${SABNZBDVPN_ENVIRONMENT_ENABLE_PRIVOXY}
- LAN_NETWORK=${LAN_NETWORK}
- NAME_SERVERS=${NS1},${NS2}
- LAN_NETWORK=${SABNZBDVPN_ENVIRONMENT_LAN_NETWORK}
- NAME_SERVERS=${SABNZBDVPN_ENVIRONMENT_NAME_SERVERS}
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
- VPN_CLIENT=${VPN_CLIENT}
- VPN_ENABLED=${VPN_ENABLE}
- VPN_OPTIONS=${VPN_OPTIONS}
- VPN_PASS=${VPN_PASS}
- VPN_PROV=${VPN_PROV}
- VPN_USER=${VPN_USER}
- VPN_CLIENT=${SABNZBDVPN_ENVIRONMENT_VPN_CLIENT}
- VPN_ENABLED=${SABNZBDVPN_ENVIRONMENT_VPN_ENABLE}
- VPN_INPUT_PORTS=${SABNZBDVPN_ENVIRONMENT_VPN_INPUT_PORTS}
- VPN_OPTIONS=${SABNZBDVPN_ENVIRONMENT_VPN_OPTIONS}
- VPN_OUTPUT_PORTS=${SABNZBDVPN_ENVIRONMENT_VPN_OUTPUT_PORTS}
- VPN_PASS=${SABNZBDVPN_ENVIRONMENT_VPN_PASS}
- VPN_PROV=${SABNZBDVPN_ENVIRONMENT_VPN_PROV}
- VPN_USER=${SABNZBDVPN_ENVIRONMENT_VPN_USER}
privileged: true
restart: ${SABNZBDVPN_RESTART}
sysctls:
Expand All @@ -25,5 +27,3 @@ services:
- /etc/localtime:/etc/localtime:ro
- ${DOCKER_VOLUME_CONFIG}/sabnzbdvpn:/config
- ${DOCKER_VOLUME_STORAGE}:/storage
- ${VPN_VOLUME_OVPNDIR}:/config/openvpn
- ${VPN_VOLUME_WGDIR}:/config/wireguard
11 changes: 7 additions & 4 deletions compose/.apps/transmissionvpn/transmissionvpn.labels.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
services:
transmissionvpn:
labels:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use Transmission with PrivoxyVPN"
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Transmission with OpenVPN"
com.dockstarter.appinfo.nicename: "TransmissionVPN"
com.dockstarter.appvars.transmissionvpn_enabled: "false"
com.dockstarter.appvars.transmissionvpn_environment_download_dir: "/storage/downloads/completed"
com.dockstarter.appvars.transmissionvpn_environment_home: "/config"
com.dockstarter.appvars.transmissionvpn_environment_incomplete_dir: "/storage/downloads/incomplete"
com.dockstarter.appvars.transmissionvpn_environment_local_network: "192.168.x.x/24"
com.dockstarter.appvars.transmissionvpn_environment_openvpn_password: "your-vpn-pass"
com.dockstarter.appvars.transmissionvpn_environment_openvpn_provider: "custom"
com.dockstarter.appvars.transmissionvpn_environment_openvpn_username: "your-vpn-user"
com.dockstarter.appvars.transmissionvpn_environment_watch_dir: "/storage/downloads/watch"
com.dockstarter.appvars.transmissionvpn_network_mode: ""
com.dockstarter.appvars.transmissionvpn_port_51413: "51413"
com.dockstarter.appvars.transmissionvpn_port_6881: "6881"
com.dockstarter.appvars.transmissionvpn_port_9091: "9091"
com.dockstarter.appvars.transmissionvpn_restart: "unless-stopped"
com.dockstarter.appvars.transmissionvpn_tag: "latest"
4 changes: 0 additions & 4 deletions compose/.apps/transmissionvpn/transmissionvpn.ports.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
services:
transmissionvpn:
ports:
- ${TRANSMISSIONVPN_PORT_51413}:51413
- ${TRANSMISSIONVPN_PORT_51413}:51413/udp
- ${TRANSMISSIONVPN_PORT_6881}:6881
- ${TRANSMISSIONVPN_PORT_6881}:6881/udp
- ${TRANSMISSIONVPN_PORT_9091}:9091
19 changes: 5 additions & 14 deletions compose/.apps/transmissionvpn/transmissionvpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,15 @@ services:
cap_add:
- NET_ADMIN
container_name: transmissionvpn
devices:
- /dev/net/tun
dns:
- ${NS1}
- ${NS2}
environment:
- CREATE_TUN_DEVICE=true
- LOCAL_NETWORK=${LAN_NETWORK}
- OPENVPN_OPTS=${VPN_OPTIONS}
- OPENVPN_PASSWORD=${VPN_PASS}
- OPENVPN_PROVIDER=${VPN_PROV}
- OPENVPN_USERNAME=${VPN_USER}
- LOCAL_NETWORK=${TRANSMISSIONVPN_ENVIRONMENT_LOCAL_NETWORK}
- OPENVPN_PASSWORD=${TRANSMISSIONVPN_ENVIRONMENT_OPENVPN_PASSWORD}
- OPENVPN_PROVIDER=${TRANSMISSIONVPN_ENVIRONMENT_OPENVPN_PROVIDER}
- OPENVPN_USERNAME=${TRANSMISSIONVPN_ENVIRONMENT_OPENVPN_USERNAME}
- PGID=${PGID}
- PUID=${PUID}
- TRANSMISSION_DOWNLOAD_DIR=${TRANSMISSIONVPN_ENVIRONMENT_DOWNLOAD_DIR}
- TRANSMISSION_HOME=/config
- TRANSMISSION_HOME=${TRANSMISSIONVPN_ENVIRONMENT_HOME}
- TRANSMISSION_INCOMPLETE_DIR=${TRANSMISSIONVPN_ENVIRONMENT_INCOMPLETE_DIR}
- TRANSMISSION_WATCH_DIR=${TRANSMISSIONVPN_ENVIRONMENT_WATCH_DIR}
- TZ=${TZ}
Expand All @@ -27,5 +20,3 @@ services:
- /etc/localtime:/etc/localtime:ro
- ${DOCKER_VOLUME_CONFIG}/transmissionvpn:/config
- ${DOCKER_VOLUME_STORAGE}:/storage
- ${VPN_VOLUME_OVPNDIR}:/config/openvpn
- ${VPN_VOLUME_OVPNDIR}:/etc/openvpn/custom
4 changes: 0 additions & 4 deletions docs/apps/delugevpn.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# DelugeVPN

## DEPRECATED

DEPRECATION NOTICE: This image is deprecated as of 2024-02-18. Use Deluge with Gluetun or PrivoxyVPN.

[![Docker Pulls](https://img.shields.io/docker/pulls/binhex/arch-delugevpn?style=flat-square&color=607D8B&label=docker%20pulls&logo=docker)](https://hub.docker.com/r/binhex/arch-delugevpn)
[![GitHub Stars](https://img.shields.io/github/stars/binhex/arch-delugevpn?style=flat-square&color=607D8B&label=github%20stars&logo=github)](https://github.com/binhex/arch-delugevpn)
[![Compose Templates](https://img.shields.io/static/v1?style=flat-square&color=607D8B&label=compose&message=templates)](https://github.com/GhostWriters/DockSTARTer/tree/master/compose/.apps/delugevpn)
Expand Down
4 changes: 0 additions & 4 deletions docs/apps/nzbget.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# NZBGet

## DEPRECATED

DEPRECATION NOTICE: This image is deprecated as of 2023-06-02. Use SABnzbd.

[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/nzbget?style=flat-square&color=607D8B&label=docker%20pulls&logo=docker)](https://hub.docker.com/r/linuxserver/nzbget)
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-nzbget?style=flat-square&color=607D8B&label=github%20stars&logo=github)](https://github.com/linuxserver/docker-nzbget)
[![Compose Templates](https://img.shields.io/static/v1?style=flat-square&color=607D8B&label=compose&message=templates)](https://github.com/GhostWriters/DockSTARTer/tree/master/compose/.apps/nzbget)
Expand Down
4 changes: 0 additions & 4 deletions docs/apps/nzbgetvpn.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# NZBGetVPN

## DEPRECATED

DEPRECATION NOTICE: This image is deprecated as of 2023-06-02. Use SABnzbd with Gluetun or PrivoxyVPN.

[![Docker Pulls](https://img.shields.io/docker/pulls/jshridha/docker-nzbgetvpn?style=flat-square&color=607D8B&label=docker%20pulls&logo=docker)](https://hub.docker.com/r/jshridha/docker-nzbgetvpn)
[![GitHub Stars](https://img.shields.io/github/stars/jshridha/docker-nzbgetvpn?style=flat-square&color=607D8B&label=github%20stars&logo=github)](https://github.com/jshridha/docker-nzbgetvpn)
[![Compose Templates](https://img.shields.io/static/v1?style=flat-square&color=607D8B&label=compose&message=templates)](https://github.com/GhostWriters/DockSTARTer/tree/master/compose/.apps/nzbgetvpn)
Expand Down
Loading

0 comments on commit 6bb659d

Please sign in to comment.