feat: update Verysync 2.20.1

This commit is contained in:
arch3rPro
2025-07-08 23:06:11 +08:00
parent 8818157f9d
commit b170b26b80
7 changed files with 124 additions and 20 deletions
+49
View File
@@ -0,0 +1,49 @@
additionalProperties:
formFields:
- default: 8886
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Web Port
labelZh: Web管理端口
required: true
rule: paramPort
type: number
- default: 22330
edit: true
envKey: VERYSYNC_TRANSFER_PORT
labelEn: Transfer Port
labelZh: 数据传输端口
required: true
rule: paramPort
type: number
- default: 3000
edit: true
envKey: PUBLIC_RELAY_PORT
labelEn: Public Relay Port
labelZh: 公共中继端口
required: true
rule: paramPort
type: number
- default: 22027
edit: true
envKey: LOCAL_AREA_NETWORK_UDP_DISCOVERY_PORT_1
labelEn: Local Area Network UDP discovery port 1
labelZh: 内网udp发现端口1
required: true
rule: paramPort
type: number
- default: 22037
edit: true
envKey: LOCAL_AREA_NETWORK_UDP_DISCOVERY_PORT_2
labelEn: Local Area Network UDP discovery port 2
labelZh: 内网udp发现端口2
required: true
rule: paramPort
type: number
- default: ./data
edit: true
envKey: VERYSYNC_DATA_PATH
labelEn: Data Path
labelZh: 数据目录
required: true
type: text
+23
View File
@@ -0,0 +1,23 @@
services:
verysync:
image: jonnyan404/verysync:v2.20.1
container_name: verysync
environment:
- PORT=${PANEL_APP_PORT_HTTP}
ports:
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
- ${VERYSYNC_TRANSFER_PORT}:22330
- ${PUBLIC_RELAY_PORT}:3000
- ${LOCAL_AREA_NETWORK_UDP_DISCOVERY_PORT_1}:22027/udp
- ${LOCAL_AREA_NETWORK_UDP_DISCOVERY_PORT_2}:22037/udp
volumes:
- ${VERYSYNC_DATA_PATH}:/data
restart: always
labels:
createdBy: "Apps"
networks:
- 1panel-network
networks:
1panel-network:
external: true