docker-qBittorrentvpn/README.md

90 lines
3.2 KiB
Markdown
Raw Normal View History

2018-02-03 01:11:35 +00:00
2016-02-25 03:07:54 +00:00
# qBittorrent with WebUI and OpenVPN
2018-02-03 01:50:54 +00:00
Docker container which runs a headless qBittorrent client with WebUI while connecting to OpenVPN.
2015-05-24 19:09:00 +00:00
## Run container from Docker registry
The container is available from the Docker registry and this is the simplest way to get it.
To run the container use this command:
2014-11-09 15:55:18 +00:00
```
2015-05-09 17:22:07 +00:00
$ docker run --privileged -d \
2018-02-03 00:59:48 +00:00
-v /your/docker/config/path/:/config \
-v /your/downloads/path/:/downloads \
2018-02-03 12:17:48 +00:00
-e "VPN_ENABLED=yes" \
2018-02-03 04:40:49 +00:00
-e "LAN_NETWORK=192.168.1.0/24" \
-e "NAME_SERVERS=8.8.8.8,8.8.4.4" \
2018-02-03 04:41:30 +00:00
-e "PUID=99" \
-e "PGID=100" \
2018-02-03 00:59:48 +00:00
-p 8080:8080 \
2018-02-03 04:40:49 +00:00
-p 8999:8999 \
2018-02-03 00:59:48 +00:00
markusmcnugen/qbittorrentvpn
2015-05-09 17:22:07 +00:00
```
2015-05-10 20:25:43 +00:00
2018-02-03 00:59:48 +00:00
As you can see, the container also expects a downloads volume to be mounted.
2018-02-03 16:25:44 +00:00
This is where qBittorrent will store your downloads, incomplete downloads and/or a watch directory for new .torrent files.
2018-02-03 16:25:44 +00:00
### Environment Variables
2018-02-04 04:13:02 +00:00
| Variable | Required| Function | Example |
|----------|----------|----------|----------|
|`VPN_ENABLED`| Yes | Enable VPN? (yes\|no) Default:yes|`VPN_ENABLED=yes`|
|`LAN_NETWORK`| Yes | Local Network with CIDR notation |`OPENVPN_PASSWORD=192.168.1.0/24`|
|`NAME_SERVERS`| No | Comma delimited name servers |`NAME_SERVERS=8.8.8.8,8.8.4.4`|
|`PUID`| Yes | UID applied to config files and downloads |`PUID=99`|
|`PGID`| Yes | GID applied to config files and downloads |`PGID=100`|
2018-02-03 04:57:50 +00:00
## Access the WebUI
2018-02-03 04:46:02 +00:00
Access http://IPADDRESS:8080 from a browser on the same network.
2014-11-09 15:55:18 +00:00
2018-02-03 16:25:44 +00:00
### Default Credentials
2018-02-03 04:57:50 +00:00
| Credential | Default Value |
|----------|----------|
|`WebUI Username`|admin |
|`WebUI Password`|adminadmin |
2018-02-03 04:46:02 +00:00
2018-02-03 16:25:44 +00:00
## How to use OpenVPN
The container will fail to boot if `VPN_ENABLED` is set to anything other than no and a .ovpn is not present in the /config/openvpn directory. Drop a .ovpn file from your VPN provider into /config/openvpn and start the container. You may need to edit the ovpn configuration file to load your VPN credentials from a file by setting `auth-user-pass`.
### Example auth-user-pass option
`auth-user-pass credentials.conf`
### Example credentials.conf
username
password
2018-02-03 04:57:50 +00:00
## PUID/PGID
2018-02-03 04:44:27 +00:00
User ID (PUID) and Group ID (PGID) can be found by issuing the following command for the user you want to run the container as:-
```
id <username>
```
2015-08-15 23:45:53 +00:00
2018-02-03 04:57:50 +00:00
## Issues
If you are having issues with this container please submit an issue on GitHub.
2016-02-09 20:55:20 +00:00
Please provide logs, docker version and other information that can simplify reproducing the issue.
Using the latest stable verison of Docker is always recommended. Support for older version is on a best-effort basis.
2015-08-15 23:45:53 +00:00
## Building the container yourself
To build this container, clone the repository and cd into it.
### Build it:
```
2018-02-03 01:50:54 +00:00
$ cd /repo/location/qbittorrentvpn
$ docker build -t qbittorrentvpn .
2015-08-15 23:45:53 +00:00
```
### Run it:
```
$ docker run --privileged -d \
2018-02-03 01:50:54 +00:00
-v /your/docker/config/path/:/config \
-v /your/downloads/path/:/downloads \
2018-02-03 04:40:49 +00:00
-e "LAN_NETWORK=192.168.1.0/24" \
-e "NAME_SERVERS=8.8.8.8,8.8.4.4" \
2018-02-03 04:41:30 +00:00
-e "PUID=99" \
-e "PGID=100" \
2018-02-03 01:50:54 +00:00
-p 8080:8080 \
2018-02-03 04:40:49 +00:00
-p 8999:8999 \
2018-02-03 01:50:54 +00:00
qbittorrentvpn
2015-08-15 23:45:53 +00:00
```
2016-02-09 20:55:20 +00:00
This will start a container as described in the "Run container from Docker registry" section.
2015-08-15 23:45:53 +00:00