Bot Updating Documentation

pull/13/head
LinuxServer-CI 2020-05-09 16:09:00 +00:00
rodzic 441cf475c6
commit 914a7f2cea
1 zmienionych plików z 9 dodań i 8 usunięć

Wyświetl plik

@ -46,11 +46,11 @@ docker create \
--net=host \ --net=host \
-e PUID=1000 \ -e PUID=1000 \
-e PGID=1000 \ -e PGID=1000 \
-e TZ=<timezone> \ -e TZ=Europe/London \
-e UMASK_SET=022 `#optional` \ -e UMASK_SET=022 `#optional` \
-e DELUGE_LOGLEVEL=error `#optional` \ -e DELUGE_LOGLEVEL=error `#optional` \
-v </path/to/deluge/config>:/config \ -v /path/to/deluge/config:/config \
-v </path/to/your/downloads>:/downloads \ -v /path/to/your/downloads:/downloads \
--restart unless-stopped \ --restart unless-stopped \
linuxserver/deluge linuxserver/deluge
``` ```
@ -71,12 +71,12 @@ services:
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
- TZ=<timezone> - TZ=Europe/London
- UMASK_SET=022 #optional - UMASK_SET=022 #optional
- DELUGE_LOGLEVEL=error #optional - DELUGE_LOGLEVEL=error #optional
volumes: volumes:
- </path/to/deluge/config>:/config - /path/to/deluge/config:/config
- </path/to/your/downloads>:/downloads - /path/to/your/downloads:/downloads
restart: unless-stopped 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 | | `PUID=1000` | for UserID - see below for explanation |
| `PGID=1000` | for GroupID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation |
| `TZ=<timezone>` | 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 | | `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 | | `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 ## Application Setup
The admin interface is available at http://<ip>: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. 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 ## Versions
* **09.05.19:** - Add python3 requests and future modules.
* **24.08.19:** - Add ability to set LogLevel for Deluge. * **24.08.19:** - Add ability to set LogLevel for Deluge.
* **09.06.19:** - Update to 2.x using deluge ppa. * **09.06.19:** - Update to 2.x using deluge ppa.
* **02.05.19:** - Install full version of 7zip. * **02.05.19:** - Install full version of 7zip.