16 lines
346 B
YAML
16 lines
346 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
deluge:
|
||
|
image: lscr.io/linuxserver/deluge:latest
|
||
|
container_name: deluge
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- DELUGE_LOGLEVEL=error #optional
|
||
|
volumes:
|
||
|
- /infra/deluge/config:/config
|
||
|
- /infra/downloads:/downloads
|
||
|
ports:
|
||
|
- 8001:8112
|
||
|
restart: unless-stopped
|