diff --git a/images/docker-deluge.md b/images/docker-deluge.md index fc7cdb288..61d0c0138 100644 --- a/images/docker-deluge.md +++ b/images/docker-deluge.md @@ -46,11 +46,11 @@ docker create \ --net=host \ -e PUID=1000 \ -e PGID=1000 \ - -e TZ= \ + -e TZ=Europe/London \ -e UMASK_SET=022 `#optional` \ -e DELUGE_LOGLEVEL=error `#optional` \ - -v :/config \ - -v :/downloads \ + -v /path/to/deluge/config:/config \ + -v /path/to/your/downloads:/downloads \ --restart unless-stopped \ linuxserver/deluge ``` @@ -71,12 +71,12 @@ services: environment: - PUID=1000 - PGID=1000 - - TZ= + - TZ=Europe/London - UMASK_SET=022 #optional - DELUGE_LOGLEVEL=error #optional volumes: - - :/config - - :/downloads + - /path/to/deluge/config:/config + - /path/to/your/downloads:/downloads restart: unless-stopped ``` @@ -100,7 +100,7 @@ Docker images are configured using parameters passed at runtime (such as those a | :----: | --- | | `PUID=1000` | for UserID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation | -| `TZ=` | Specify a timezone to use EG Europe/London | +| `TZ=Europe/London` | Specify a timezone to use | | `UMASK_SET=022` | for umask setting of deluge, default if left unset is 022 | | `DELUGE_LOGLEVEL=error` | set the loglevel output when running Deluge, default is info for deluged and warning for delgued-web | @@ -129,7 +129,7 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel ## Application Setup -The admin interface is available at http://:8112 with a default user/password of admin/deluge. +The admin interface is available at `http://SERVER-IP:8112` with a default user/password of admin/deluge. To change the password (recommended) log in to the web interface and go to Preferences->Interface->Password. @@ -155,6 +155,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to ## Versions +* **09.05.19:** - Add python3 requests and future modules. * **24.08.19:** - Add ability to set LogLevel for Deluge. * **09.06.19:** - Update to 2.x using deluge ppa. * **02.05.19:** - Install full version of 7zip.