mirror of
https://github.com/ghndrx/docker-compose.git
synced 2026-02-10 06:45:14 +00:00
19 lines
422 B
YAML
19 lines
422 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
deluge:
|
|
image: lscr.io/linuxserver/deluge:latest
|
|
container_name: deluge
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
- DELUGE_LOGLEVEL=error #optional
|
|
volumes:
|
|
- /opt/docker/deluge/config:/config
|
|
- /opt/docker/deluge/downloads:/downloads
|
|
ports:
|
|
- 8112:8112
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
restart: unless-stopped |