Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/master-hax/compose-openvpn-deluge
a multi-container application to run Deluge behind an OpenVPN client
https://github.com/master-hax/compose-openvpn-deluge
bittorrent deluge deluge-daemon deluge-web docker docker-compose openvpn port-forwarding privacy torrent torrent-client udp vpn
Last synced: 23 days ago
JSON representation
a multi-container application to run Deluge behind an OpenVPN client
- Host: GitHub
- URL: https://github.com/master-hax/compose-openvpn-deluge
- Owner: master-hax
- Created: 2022-02-01T07:28:24.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-12-09T16:02:46.000Z (about 2 months ago)
- Last Synced: 2024-12-09T17:20:35.853Z (about 2 months ago)
- Topics: bittorrent, deluge, deluge-daemon, deluge-web, docker, docker-compose, openvpn, port-forwarding, privacy, torrent, torrent-client, udp, vpn
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# compose-openvpn-deluge
a multi-container Docker application to run [Deluge](https://hub.docker.com/r/linuxserver/deluge) behind an [OpenVPN client](https://hub.docker.com/r/dperson/openvpn-client)
## how to set it up
1. download [docker-compose.yml](/docker-compose.yml)
1. put your `*.ovpn` file into `./openvpn`
1. run `docker-compose up`if everything works correctly, Deluge should be running behind your VPN!
## how to use it
the Deluge web UI should be accessible at http://localhost:8112
if you want to use this persistently, you should probably
1. change the locations of the `deluge-data-volume` & `downloads-volume`
1. uncomment the environment lines & forward port 42069 with your VPN provider (or pick a different port). then use the same port in Deluge as the incoming port.## how it works
the `torrent-client` (Deluge) service shares the network stack of the `vpn-sidecar` service (OpenVPN), which is tunneled through your VPN provider. to maintain local connectivity to the `torrent-client` container's web UI, we proxy to it to through the `web-proxy` service (Nginx) using [Docker container links](https://docs.docker.com/network/links/).
## note: a [Wireguard version](https://github.com/master-hax/compose-wireguard-deluge) is also available