This commit is contained in:
Daan 2020-07-21 09:45:31 +02:00
parent fdac03bfe3
commit a5abbeb56d
3 changed files with 22 additions and 1 deletions

3
.gitignore vendored
View file

@ -20,4 +20,5 @@ yarn-error.log*
*.sln
*.sw?
vuetorrent
vuetorrent
config

View file

@ -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
View 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