You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.2 KiB
YAML

# [Deluge](http://deluge-torrent.org/) is a lightweight, Free Software, cross-
# platform BitTorrent client. * Full Encryption * WebUI * Plugin System * Much
# more...
---
version: "2.1"
services:
deluge:
image: ghcr.io/linuxserver/deluge
container_name: deluge
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# set the loglevel output when running Deluge, default is info for deluged and warning for delgued-web
- DELUGE_LOGLEVEL=error # optional
volumes:
# deluge configs
- ${BASEDIR:-/volume1/docker}/deluge/config:/config
# torrent download directory
- ${BASEDIR:-/volume1/docker}/deluge/downloads:/downloads
ports:
# Port for webui
- 8112:8112
# Inbound torrent traffic (See App Setup)
- 6881:6881
# Inbound torrent traffic (See App Setup)
- 6881:6881/udp
# Default deluged port for thin client connectivity
- 58846:58846 # optional
restart: unless-stopped