22 lines
492 B
YAML
22 lines
492 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
deluge-emp0:
|
||
|
image: linuxserver/deluge
|
||
|
container_name: deluge-emp0
|
||
|
restart: "no"
|
||
|
ports:
|
||
|
- 52200:8112
|
||
|
- 51200:58946
|
||
|
- 51200:58946/udp
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=America/Los_Angeles
|
||
|
- UMASK_SET=022 #optional
|
||
|
- DELUGE_LOGLEVEL=info #optional
|
||
|
volumes:
|
||
|
- /home/joey/docker/deluge/emp/0:/config
|
||
|
- /mnt/torrenting/EMP/0:/downloads
|
||
|
- /mnt/torrenting/EMP/0T:/watch
|