Gipat/services/deluge/docker-compose.yml

27 lines
935 B
YAML
Raw Permalink Normal View History

2023-11-19 09:01:36 +00:00
version: '3'
services:
deluge:
image: lscr.io/linuxserver/deluge:latest
container_name: deluge
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/MSK
- DELUGE_LOGLEVEL=error #optional
volumes:
- ./data/config:/config
- ./data/downloads:/downloads
- /mnt/Teka1/Videos:/mnt/Teka1/Videos
- /mnt/Teka2/Videos:/mnt/Teka2/Videos
ports:
2023-11-19 09:28:35 +00:00
# - 8112:8112 # Web UI
- 58846:58846 # RPC
2023-11-19 09:01:36 +00:00
- 6881:6881 # Inbound torrent traffic
- 6881:6881/udp # Inbound torrent traffic
2023-11-19 09:05:39 +00:00
restart: always
# 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.
#
# Change the inbound port to 6881 (or whichever port you've mapped for the container) under Preferences->Network, otherwise random ports will be used.