kopia lustrzana https://github.com/linuxserver/docker-documentation
Bot Updating Documentation
rodzic
779f663339
commit
075b0be800
|
@ -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 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
|
## Usage
|
||||||
|
|
||||||
Here are some example snippets to help you get started creating a container from this image.
|
Here are some example snippets to help you get started creating a container from this image.
|
||||||
|
@ -60,7 +62,6 @@ services:
|
||||||
deluge:
|
deluge:
|
||||||
image: ghcr.io/linuxserver/deluge
|
image: ghcr.io/linuxserver/deluge
|
||||||
container_name: deluge
|
container_name: deluge
|
||||||
network_mode: host
|
|
||||||
environment:
|
environment:
|
||||||
- PUID=1000
|
- PUID=1000
|
||||||
- PGID=1000
|
- PGID=1000
|
||||||
|
@ -69,6 +70,10 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /path/to/deluge/config:/config
|
- /path/to/deluge/config:/config
|
||||||
- /path/to/your/downloads:/downloads
|
- /path/to/your/downloads:/downloads
|
||||||
|
ports:
|
||||||
|
- 8112:8112
|
||||||
|
- 6881:6881
|
||||||
|
- 6881/udp:6881/udp
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -77,11 +82,13 @@ services:
|
||||||
```bash
|
```bash
|
||||||
docker run -d \
|
docker run -d \
|
||||||
--name=deluge \
|
--name=deluge \
|
||||||
--net=host \
|
|
||||||
-e PUID=1000 \
|
-e PUID=1000 \
|
||||||
-e PGID=1000 \
|
-e PGID=1000 \
|
||||||
-e TZ=Europe/London \
|
-e TZ=Europe/London \
|
||||||
-e DELUGE_LOGLEVEL=error `#optional` \
|
-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/deluge/config:/config \
|
||||||
-v /path/to/your/downloads:/downloads \
|
-v /path/to/your/downloads:/downloads \
|
||||||
--restart unless-stopped \
|
--restart unless-stopped \
|
||||||
|
@ -96,12 +103,9 @@ Docker images are configured using parameters passed at runtime (such as those a
|
||||||
|
|
||||||
| Parameter | Function |
|
| Parameter | Function |
|
||||||
| :----: | --- |
|
| :----: | --- |
|
||||||
|
| `8112` | Port for webui |
|
||||||
#### Networking (`--net`)
|
| `6881` | Inbound torrent traffic (See App Setup) |
|
||||||
|
| `6881/udp` | Inbound torrent traffic (See App Setup) |
|
||||||
| Parameter | Function |
|
|
||||||
| :-----: | --- |
|
|
||||||
| `--net=host` | Shares host networking with container, **required**. |
|
|
||||||
|
|
||||||
### Environment Variables (`-e`)
|
### Environment Variables (`-e`)
|
||||||
|
|
||||||
|
@ -168,6 +172,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
|
||||||
|
|
||||||
## Versions
|
## 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.
|
* **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.
|
* **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.
|
||||||
|
|
Ładowanie…
Reference in New Issue