mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2026-01-21 15:55:27 +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
|
||||
```
|
||||
Reference in New Issue
Block a user