mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-16 13:09:44 +03:00
Updated Alternative_Installation_Methods (markdown)
parent
ba9f37fdd6
commit
f88bcae3bd
1 changed files with 26 additions and 0 deletions
|
@ -34,3 +34,29 @@ server {
|
|||
}
|
||||
}
|
||||
```
|
||||
## Mod for LinuxServer.io's container
|
||||
|
||||
Add an environment variable called `DOCKER_MODS` with the value `arafatamim/linuxserver-io-mod-vuetorrent` when creating the container.
|
||||
|
||||
Example: `docker-compose.yml`
|
||||
```yml
|
||||
...
|
||||
qbittorrent:
|
||||
image: linuxserver/qbittorrent
|
||||
container_name: qbittorrent
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- UMASK=022
|
||||
- WEBUI_PORT=9090
|
||||
- DOCKER_MODS=arafatamim/linuxserver-io-mod-vuetorrent
|
||||
volumes:
|
||||
- ./data/qbittorrent:/config
|
||||
- /home/user/Downloads:/downloads
|
||||
ports:
|
||||
- 6881:6881
|
||||
- 6881:6881/udp
|
||||
- 9090:9090
|
||||
restart: unless-stopped
|
||||
```
|
||||
[More info here](https://github.com/arafatamim/linuxserver-io-mod-vuetorrent)
|
Loading…
Add table
Reference in a new issue