1
0

Update Apps

This commit is contained in:
pooneyy
2025-07-03 11:40:55 +08:00
parent fb2d7887ca
commit 00cadf9c2c
241 changed files with 12357 additions and 4529 deletions

View File

@@ -1,8 +0,0 @@
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

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

View File

@@ -1,31 +0,0 @@
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:2021.11.18
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true