mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-23 02:54:57 +00:00
Update README.md
This commit is contained in:
parent
cf18efc081
commit
5ebfc5f0a0
28
README.md
28
README.md
@ -10,11 +10,14 @@ To run the container use this command:
|
|||||||
$ docker run --privileged -d \
|
$ docker run --privileged -d \
|
||||||
-v /your/docker/config/path/:/config \
|
-v /your/docker/config/path/:/config \
|
||||||
-v /your/downloads/path/:/downloads \
|
-v /your/downloads/path/:/downloads \
|
||||||
-e "OPENVPN_USERNAME=user" \
|
-e "OPENVPN_USERNAME=username" \
|
||||||
-e "OPENVPN_PASSWORD=pass" \
|
-e "OPENVPN_PASSWORD=password" \
|
||||||
-e PUID=<uid for user> \
|
-e "LAN_NETWORK=192.168.1.0/24" \
|
||||||
-e PGID=<gid for user> \
|
-e "NAME_SERVERS=8.8.8.8,8.8.4.4" \
|
||||||
|
-e PUID=99 \
|
||||||
|
-e PGID=100 \
|
||||||
-p 8080:8080 \
|
-p 8080:8080 \
|
||||||
|
-p 8999:8999 \
|
||||||
markusmcnugen/qbittorrentvpn
|
markusmcnugen/qbittorrentvpn
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -26,15 +29,15 @@ This is where qBittorrent will store your downloads, incomplete downloads and lo
|
|||||||
### Required environment options
|
### Required environment options
|
||||||
| Variable | Function | Example |
|
| Variable | Function | Example |
|
||||||
|----------|----------|-------|
|
|----------|----------|-------|
|
||||||
|`OPENVPN_USERNAME`|Your OpenVPN username |`OPENVPN_USERNAME=asdf`|
|
|`OPENVPN_USERNAME`|Your OpenVPN username |`OPENVPN_USERNAME=username`|
|
||||||
|`OPENVPN_PASSWORD`|Your OpenVPN password |`OPENVPN_PASSWORD=asdf`|
|
|`OPENVPN_PASSWORD`|Your OpenVPN password |`OPENVPN_PASSWORD=password`|
|
||||||
|`PUID`|UID applied to config files |`OPENVPN_PASSWORD=asdf`|
|
|`LAN_NETWORK`|Local Network with CIDR notation |`OPENVPN_PASSWORD=192.168.1.0/24`|
|
||||||
|`PGID`|GID applied to config files |`OPENVPN_PASSWORD=asdf`|
|
|`NAME_SERVERS`|Comma delimited name servers |`NAME_SERVERS=8.8.8.8,8.8.4.4`|
|
||||||
|
|`PUID`|UID applied to config files |`PUID=99`|
|
||||||
|
|`PGID`|GID applied to config files |`PGID=100`|
|
||||||
|
|
||||||
### Access the WebUI
|
### Access the WebUI
|
||||||
But what's going on? My http://IPADDRESS:8080 isn't responding?
|
Access http://IPADDRESS:8080 from a browser on the same network
|
||||||
This is because the VPN is active, and since docker is running in a different ip range than your client the response
|
|
||||||
to your request will be treated as "non-local" traffic and therefore be routed out through the VPN interface.
|
|
||||||
|
|
||||||
### Known issues
|
### Known issues
|
||||||
Some have encountered problems with DNS resolving inside the docker container.
|
Some have encountered problems with DNS resolving inside the docker container.
|
||||||
@ -61,9 +64,12 @@ $ docker run --privileged -d \
|
|||||||
-v /your/downloads/path/:/downloads \
|
-v /your/downloads/path/:/downloads \
|
||||||
-e "OPENVPN_USERNAME=user" \
|
-e "OPENVPN_USERNAME=user" \
|
||||||
-e "OPENVPN_PASSWORD=pass" \
|
-e "OPENVPN_PASSWORD=pass" \
|
||||||
|
-e "LAN_NETWORK=192.168.1.0/24" \
|
||||||
|
-e "NAME_SERVERS=8.8.8.8,8.8.4.4" \
|
||||||
-e PUID=<uid for user> \
|
-e PUID=<uid for user> \
|
||||||
-e PGID=<gid for user> \
|
-e PGID=<gid for user> \
|
||||||
-p 8080:8080 \
|
-p 8080:8080 \
|
||||||
|
-p 8999:8999 \
|
||||||
qbittorrentvpn
|
qbittorrentvpn
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user