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.

26 lines
842 B
YAML

# Deluge 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
network_mode: host
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- 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
restart: unless-stopped