mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-13 12:52:18 +08:00
27 lines
646 B
YAML
27 lines
646 B
YAML
services:
|
|
deluge:
|
|
image: "linuxserver/deluge:18.04.1"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TIME_ZONE}
|
|
- DELUGE_LOGLEVEL=${DELUGE_LOGLEVEL}
|
|
volumes:
|
|
- ${CONFIG_PATH}:/config
|
|
- ${DOWNLOAD_PATH}:/downloads
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:8112"
|
|
- "${DELUGE_PEER_PORT}:${DELUGE_PEER_PORT}"
|
|
- "${DELUGE_PEER_PORT}:${DELUGE_PEER_PORT}/udp"
|
|
- "${DELUGE_PORT_RPC}:${DELUGE_PORT_RPC}"
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|