mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
readme
This commit is contained in:
parent
fdac03bfe3
commit
a5abbeb56d
3 changed files with 22 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -20,4 +20,5 @@ yarn-error.log*
|
|||
*.sln
|
||||
*.sw?
|
||||
|
||||
vuetorrent
|
||||
vuetorrent
|
||||
config
|
|
@ -40,6 +40,8 @@ The sleekest looking WEBUI for qBittorrent made with Vuejs!
|
|||
|
||||
- torrent info / trackers / peers / content
|
||||
|
||||
- searching for new torrents straight from the WEBUI!
|
||||
|
||||
* works on QBittorrent V4.2 and later
|
||||
|
||||
### Sorting/Filtring
|
||||
|
|
18
docker-compose.yml
Normal file
18
docker-compose.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
version: '3.6'
|
||||
services:
|
||||
qbittorrent:
|
||||
image: linuxserver/qbittorrent
|
||||
container_name: qbit
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/London
|
||||
- UMASK_SET=022
|
||||
- WEBUI_PORT=8080
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /home/daan/Downloads:/downloads
|
||||
- ./vuetorrent:/vuetorrent
|
||||
ports:
|
||||
- 8080:8080
|
||||
restart: unless-stopped
|
Loading…
Add table
Reference in a new issue