19 lines
433 B
YAML
Executable File
19 lines
433 B
YAML
Executable File
services:
|
|
deluge:
|
|
image: lscr.io/linuxserver/deluge:latest
|
|
container_name: deluge
|
|
environment:
|
|
- PUID=123
|
|
- PGID=124
|
|
- TZ=Europe/Prague
|
|
- DELUGE_LOGLEVEL=error #optional
|
|
volumes:
|
|
- /zstore/Docker-volumes/Deluge:/config
|
|
- /data/Downloads:/downloads
|
|
ports:
|
|
- 8112:8112
|
|
- 53755:53755
|
|
- 53755:53755/udp
|
|
- 58846:58846 #optional
|
|
restart: unless-stopped
|