appstore/apps/deluge/2.2.0/docker-compose.yml
github-action update-app-version 88949f650e Update app version [skip ci]
2025-07-04 06:54:16 +00:00

27 lines
644 B
YAML

services:
deluge:
image: "linuxserver/deluge:2.2.0"
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