29 lines
604 B
YAML
29 lines
604 B
YAML
services:
|
|
deluge:
|
|
image: linuxserver/deluge
|
|
container_name: deluge
|
|
volumes:
|
|
# Config
|
|
- $APPDATA/deluge:/config
|
|
# Media
|
|
- $DOWNLOADS:/downloads
|
|
environment:
|
|
PUID: $PUID
|
|
PGID: $PGID
|
|
TZ: $TZ
|
|
ports:
|
|
- 8112:8112
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
restart: unless-stopped
|
|
|
|
storm:
|
|
image: ghcr.io/relvacode/storm
|
|
container_name: storm
|
|
environment:
|
|
DELUGE_RPC_VERSION: v2
|
|
DELUGE_RPC_HOSTNAME: deluge
|
|
DELUGE_RPC_USERNAME: $DELUGE_USER
|
|
DELUGE_RPC_PASSWORD: $DELUGE_PASS
|
|
ports:
|
|
- 8221:8221 |