From 075b0be80034d56f9436dfb23b63e52588655464 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Jun 2021 15:00:52 +0000 Subject: [PATCH] Bot Updating Documentation --- images/docker-deluge.md | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/images/docker-deluge.md b/images/docker-deluge.md index 8b4a3b66e..0af53c8d7 100644 --- a/images/docker-deluge.md +++ b/images/docker-deluge.md @@ -45,6 +45,8 @@ To change the password (recommended) log in to the web interface and go to Prefe Change the downloads location in the webui in Preferences->Downloads and use /downloads for completed downloads. +Change the inbound port to 6881 (or whichever port you've mapped for the container) under Preferences->Network, otherwise random ports will be used. + ## Usage Here are some example snippets to help you get started creating a container from this image. @@ -60,7 +62,6 @@ services: deluge: image: ghcr.io/linuxserver/deluge container_name: deluge - network_mode: host environment: - PUID=1000 - PGID=1000 @@ -69,6 +70,10 @@ services: volumes: - /path/to/deluge/config:/config - /path/to/your/downloads:/downloads + ports: + - 8112:8112 + - 6881:6881 + - 6881/udp:6881/udp restart: unless-stopped ``` @@ -77,11 +82,13 @@ services: ```bash docker run -d \ --name=deluge \ - --net=host \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ -e DELUGE_LOGLEVEL=error `#optional` \ + -p 8112:8112 \ + -p 6881:6881 \ + -p 6881/udp:6881/udp \ -v /path/to/deluge/config:/config \ -v /path/to/your/downloads:/downloads \ --restart unless-stopped \ @@ -96,12 +103,9 @@ Docker images are configured using parameters passed at runtime (such as those a | Parameter | Function | | :----: | --- | - -#### Networking (`--net`) - -| Parameter | Function | -| :-----: | --- | -| `--net=host` | Shares host networking with container, **required**. | +| `8112` | Port for webui | +| `6881` | Inbound torrent traffic (See App Setup) | +| `6881/udp` | Inbound torrent traffic (See App Setup) | ### Environment Variables (`-e`) @@ -168,6 +172,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to ## Versions +* **07.06.21:** - Remove host networking from readme examples * **23.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **09.05.19:** - Add python3 requests and future modules. * **24.08.19:** - Add ability to set LogLevel for Deluge.