docker-bits/lsio/deluge/docker-run.sh

17 lines
839 B
Bash
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [Deluge](http://deluge-torrent.org/) is a lightweight, Free Software, cross-
# platform BitTorrent client. * Full Encryption * WebUI * Plugin System * Much
# more...
2021-04-10 10:16:29 +00:00
source ./.env
docker run -d \
--name=deluge \
--net=host `# Shares host networking with container, **required**.` \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
2021-04-13 00:58:58 +00:00
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
2021-04-10 10:16:29 +00:00
-e DELUGE_LOGLEVEL=error `# optional` `# set the loglevel output when running Deluge, default is info for deluged and warning for delgued-web` \
-v ${BASEDIR:-/volume1/docker}/deluge/config:/config `# deluge configs` \
-v ${BASEDIR:-/volume1/docker}/deluge/downloads:/downloads `# torrent download directory` \
--restart unless-stopped \
ghcr.io/linuxserver/deluge