mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-01-23 12:14:17 +00:00
34 lines
623 B
Markdown
34 lines
623 B
Markdown
# 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
|
|
```
|