mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-19 22:17:45 +02:00
Compare commits
No commits in common. "8c0f713b01d392cd24e7c412a3eb6670e42fdf83" and "dcfb438f345edbd25e45d744911367544635284f" have entirely different histories.
8c0f713b01
...
dcfb438f34
@ -10,8 +10,7 @@ file, seeding describes the download followed by also uploading it.
|
|||||||
There are various clients to use for BitTorrent down- and uploading.
|
There are various clients to use for BitTorrent down- and uploading.
|
||||||
The list below shows clients with an existing entry in this wiki.
|
The list below shows clients with an existing entry in this wiki.
|
||||||
|
|
||||||
- [Transmission](/wiki/transmission.md) is an easy to use client
|
- [Transmission](/wiki/transmission.md)
|
||||||
- [qBittorrent](/wiki/qbittorrent.md) is a very feature rich client
|
|
||||||
|
|
||||||
## Personal Video Recorders
|
## Personal Video Recorders
|
||||||
|
|
||||||
|
@ -1,76 +0,0 @@
|
|||||||
# dyonr - qbittorrentvpn
|
|
||||||
|
|
||||||
This is a [Docker](/wiki/docker.md) container for a
|
|
||||||
[qBittorrent](../qbittorrent.md) server that is connected to the internet via
|
|
||||||
an [openVPN tunnel](/wiki/vpn.md).
|
|
||||||
The official container and documentation was made by
|
|
||||||
[dyonr](https://github.com/DyonR/docker-qbittorrentvpn).
|
|
||||||
|
|
||||||
## Set-up
|
|
||||||
|
|
||||||
Create the file `rebuild.sh`.
|
|
||||||
Change the settings according to your needs and run `./rebuild.sh` afterwards.
|
|
||||||
The default username of the web interface is `admin`.
|
|
||||||
The default password is `adminadmin`.
|
|
||||||
Both can be changed in the web interface after setup.
|
|
||||||
|
|
||||||
## Environment-variables
|
|
||||||
|
|
||||||
Set the following variables with the -e tag.
|
|
||||||
|
|
||||||
| Name | Usage | Default |
|
|
||||||
| ------------------- | --------------------------- | ------- |
|
|
||||||
| `VPN_ENABLE` | Enable VPN | ` ` |
|
|
||||||
| `VPN_USERNAME` | Username for OpenVPN | ` ` |
|
|
||||||
| `VPN_PASSWORD` | Password for OpenVPN | ` ` |
|
|
||||||
| `LAN_NETWORK` | Subnet of the local network | ` ` |
|
|
||||||
|
|
||||||
## Volumes
|
|
||||||
|
|
||||||
Set the following volumes with the -v tag.
|
|
||||||
|
|
||||||
| Outside mount/volume name | Container mount | Description |
|
|
||||||
| ------------------------- | ------------------- | ----------------------- |
|
|
||||||
| `qbittorrentvpn_config` | `/config` | Configuration files |
|
|
||||||
| `qbittorrentvpn_data` | `/downloads` | Storage for data |
|
|
||||||
|
|
||||||
## Ports
|
|
||||||
|
|
||||||
Set the following ports with the -p tag.
|
|
||||||
|
|
||||||
| Container Port | Recommended outside port | Protocol | Description |
|
|
||||||
| -------------- | ------------------------ | -------- | ----------- |
|
|
||||||
| `9091` | `8080` | TCP | WebUI |
|
|
||||||
|
|
||||||
## Additional
|
|
||||||
|
|
||||||
There are some special variables to set.
|
|
||||||
|
|
||||||
| Flag | Usage |
|
|
||||||
| ----------- | ---------------------- |
|
|
||||||
| `--cap-add` | add linux capabilities |
|
|
||||||
| `--device` | connect devices |
|
|
||||||
| `--sysctl` | configure systemctl |
|
|
||||||
|
|
||||||
## rebuild.sh
|
|
||||||
|
|
||||||
```sh
|
|
||||||
#!/bin/sh
|
|
||||||
docker stop qbittorrentvpn
|
|
||||||
docker rm qbittorrentvpn
|
|
||||||
docker pull dyonr/qbittorrentvpn
|
|
||||||
docker run --name qbittorrentvpn \
|
|
||||||
--restart unless-stopped \
|
|
||||||
-p 9091:8080 \
|
|
||||||
-v qbittorrentvpn_config:/config \
|
|
||||||
-v qbittorrentvpn_data:/downloads \
|
|
||||||
-e "VPN_ENABLED=yes" \
|
|
||||||
-e "VPN_TYPE=openvpn" \
|
|
||||||
-e "VPN_USERNAME=username" \
|
|
||||||
-e "VPN_PASSWORD=password" \
|
|
||||||
-e "LAN_NETWORK=192.168.0.0/16" \
|
|
||||||
--cap-add NET_ADMIN \
|
|
||||||
--device /dev/net/tun \
|
|
||||||
--sysctl "net.ipv4.conf.all.src_valid_mark=1" \
|
|
||||||
-d dyonr/qbittorrentvpn
|
|
||||||
```
|
|
@ -1,11 +0,0 @@
|
|||||||
# qBittorrent
|
|
||||||
|
|
||||||
[qBittorrent](https://www.qbittorrent.org/) is a cross platform free and
|
|
||||||
open-source [BitTorrent client](/wiki/bittorrent.md#clients).
|
|
||||||
|
|
||||||
## Setup
|
|
||||||
|
|
||||||
The software can be setup via [Docker](/wiki/docker.md) with the
|
|
||||||
[dyonr image](/wiki/docker-images/dyonr_-_qbittorrentvpn.md) that
|
|
||||||
includes an [OpenVPN](/wiki/vpn.md#openvpn) tunnel.
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user