mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-12-20 02:51:14 +00:00
dwnld
This commit is contained in:
33
apps/downloads/deluge.md
Normal file
33
apps/downloads/deluge.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# Deluge
|
||||
- weird
|
||||
- ugly
|
||||
- can't disable password
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://deluge-torrent.org/)
|
||||
- [Git repo](https://git.deluge-torrent.org/deluge)
|
||||
- [DockerHub repo](https://hub.docker.com/r/linuxserver/deluge)
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
deluge:
|
||||
image: linuxserver/deluge
|
||||
container_name: deluge
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Dublin
|
||||
# - UMASK_SET=022 #optional
|
||||
# - DELUGE_LOGLEVEL=error #optional
|
||||
ports:
|
||||
- 3124:8112
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./downloads:/downloads
|
||||
```
|
||||
BIN
apps/downloads/qbit-settings.png
Normal file
BIN
apps/downloads/qbit-settings.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 149 KiB |
53
apps/downloads/qbit.md
Normal file
53
apps/downloads/qbit.md
Normal file
@@ -0,0 +1,53 @@
|
||||
# qbittorrent
|
||||
- ugly as hell
|
||||
- probably the best (as of today)
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://www.qbittorrent.org/)
|
||||
- [Github repo](https://github.com/qbittorrent/qBittorrent)
|
||||
- [DockerHub repo](https://hub.docker.com/r/linuxserver/qbittorrent)
|
||||
|
||||

|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
qbittorrent:
|
||||
image: linuxserver/qbittorrent
|
||||
container_name: qbittorrent
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Dublin
|
||||
- UMASK_SET=022
|
||||
- WEBUI_PORT=3030
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./downloads:/downloads
|
||||
ports:
|
||||
- 6881:6881
|
||||
- 6881:6881/udp
|
||||
- 3030:3030
|
||||
|
||||
networks:
|
||||
default:
|
||||
ipam:
|
||||
driver: default
|
||||
config: # set fixed subnet mask
|
||||
- subnet: 192.168.80.0/24
|
||||
gateway: 192.168.80.1
|
||||
```
|
||||
|
||||
|
||||
## Tips & Tricks
|
||||
|
||||
### Disabling the auth for webUI
|
||||
- find the docker container IP, e.g. in /data/qbittorrent/logs
|
||||
- in the settings, in WebUI/Authentication - enter the net mask, e.g.: `192.168.80.0/24`
|
||||
|
||||

|
||||
BIN
apps/downloads/qbit.png
Normal file
BIN
apps/downloads/qbit.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 126 KiB |
BIN
apps/downloads/transmission.jpg
Normal file
BIN
apps/downloads/transmission.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 68 KiB |
38
apps/downloads/transmission.md
Normal file
38
apps/downloads/transmission.md
Normal file
@@ -0,0 +1,38 @@
|
||||
# Transmission
|
||||
- doesn't have authentication
|
||||
- with the `/transmission-web-control/` theme it's possible to add a script on download
|
||||
- ugly as hell
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://transmissionbt.com/)
|
||||
- [Github repo](https://github.com/transmission/transmission)
|
||||
- [DockerHub repo](https://hub.docker.com/r/linuxserver/transmission)
|
||||
|
||||

|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
transmission:
|
||||
image: linuxserver/transmission
|
||||
container_name: transmission
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Dublin
|
||||
- TRANSMISSION_WEB_HOME=/transmission-web-control/
|
||||
# - TRANSMISSION_WEB_HOME=/kettu/
|
||||
ports:
|
||||
- 3124:9091
|
||||
- 51413:51413
|
||||
- 51413:51413/udp
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./downloads:/downloads
|
||||
# - <path to watch folder>:/watch
|
||||
```
|
||||
Reference in New Issue
Block a user