1
0

chore(deps): update linuxserver/transmission docker tag to v4.1.1 (localApps) (#4251)

This commit is contained in:
renovate[bot]
2026-02-27 03:38:19 +00:00
committed by GitHub
parent 90eaa2a41a
commit d5ba304964
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
CONTAINER_NAME="transmission"
DOWNLOAD_PATH="./data/downloads"
PANEL_APP_PORT_HTTP="40154"
PEER_PORT_VALUE="40152"
WATCH_PATH="./data/watch"
WEBUI_USER=""
WEBUI_PWD=""

View File

@@ -0,0 +1,66 @@
additionalProperties:
formFields:
- default: 40154
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: WebUI Port
labelZh: 网页端口
label:
en: WebUI Port
zh: 网页端口
required: true
rule: paramPort
type: number
- default: 40152
edit: true
envKey: PEER_PORT_VALUE
labelEn: Peer Port
labelZh: BT端口
label:
en: Peer Port
zh: BT端口
required: true
rule: paramPort
type: number
- default: ./data/watch
edit: true
envKey: WATCH_PATH
labelEn: Watch folder for torrent files
labelZh: 监视种子文件的文件夹
label:
en: Watch folder for torrent files
zh: 监视种子文件的文件夹
required: true
type: text
- default: ./data/downloads
edit: true
envKey: DOWNLOAD_PATH
labelEn: Download folder path
labelZh: 下载文件夹路径
label:
en: Download folder path
zh: 下载文件夹路径
required: true
type: text
- default: ""
edit: true
envKey: WEBUI_USER
labelEn: Webui user
labelZh: 网页用户
label:
en: Webui user
zh: 网页用户
required: false
type: text
- default: ""
edit: true
envKey: WEBUI_PWD
labelEn: Webui password
labelZh: 网页密码
label:
en: Webui password
zh: 网页密码
random: false
required: false
rule: paramComplexity
type: password

View File

@@ -0,0 +1,31 @@
services:
transmission:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:9091"
- "${PEER_PORT_VALUE}:${PEER_PORT_VALUE}"
- "${PEER_PORT_VALUE}:${PEER_PORT_VALUE}/udp"
volumes:
- "./data/config:/config"
- "${DOWNLOAD_PATH}:/downloads"
- "${WATCH_PATH}:/watch"
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Shanghai
- TRANSMISSION_WEB_HOME= #optional
- USER=${WEBUI_USER}
- PASS=${WEBUI_PWD}
- WHITELIST= #optional
- PEERPORT=${PEER_PORT_VALUE}
- HOST_WHITELIST= #optional
image: linuxserver/transmission:4.1.1
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true