1
0

chore(deps): update linuxserver/resilio-sync docker tag to v3.1.2 (#2543)

This commit is contained in:
renovate[bot]
2025-11-19 04:47:25 +00:00
committed by GitHub
parent 12b6677a26
commit 945b4f2d43
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
CONTAINER_NAME="resilio-sync"
PANEL_APP_PORT_HTTP="40237"
PANEL_APP_PORT_SYNC="55555"
CONFIG_PATH="./data/config"
DOWNLOADS_PATH="./data/downloads"
EXTERNAL_MOUNT_PATH="./data/mnt"
INTERNAL_MOUNT_PATH="/mnt"
SYNC_PATH="./data/sync"
TIME_ZONE="Asia/Shanghai"
USER_ID="1000"
GROUP_ID="1000"

View File

@@ -0,0 +1,102 @@
additionalProperties:
formFields:
- default: "40237"
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
label:
en: Port
zh: 端口
required: true
type: number
edit: true
- default: "55555"
envKey: PANEL_APP_PORT_SYNC
labelEn: Sync Port
labelZh: 同步端口
label:
en: Sync Port
zh: 同步端口
required: true
type: number
edit: true
- default: "./data/config"
envKey: CONFIG_PATH
labelEn: Config Path
labelZh: 配置路径
label:
en: Config Path
zh: 配置路径
required: true
type: text
edit: true
- default: "./data/downloads"
envKey: DOWNLOADS_PATH
labelEn: Downloads Path
labelZh: 下载路径
label:
en: Downloads Path
zh: 下载路径
required: true
type: text
edit: true
- default: "./data/sync"
envKey: SYNC_PATH
labelEn: Sync Path
labelZh: 同步路径
label:
en: Sync Path
zh: 同步路径
required: true
type: text
edit: true
- default: "./data/mnt"
envKey: EXTERNAL_MOUNT_PATH
labelEn: External mount path
labelZh: 外部挂载路径
label:
en: External mount path
zh: 外部挂载路径
required: true
type: text
edit: true
- default: "/mnt"
envKey: INTERNAL_MOUNT_PATH
labelEn: Internal mount path
labelZh: 内部挂载路径
label:
en: Internal mount path
zh: 内部挂载路径
required: true
type: text
edit: true
- default: "1000"
envKey: USER_ID
labelEn: User ID
labelZh: 用户 ID
label:
en: User ID
zh: 用户 ID
required: true
type: number
edit: true
- default: "1000"
envKey: GROUP_ID
labelEn: Group ID
labelZh: 用户组 ID
label:
en: Group ID
zh: 用户组 ID
required: true
type: number
edit: true
- default: "Asia/Shanghai"
envKey: TIME_ZONE
labelEn: Time Zone
labelZh: 时区
label:
en: Time Zone
zh: 时区
required: true
type: text
edit: true

View File

@@ -0,0 +1,25 @@
services:
resilio-sync:
image: linuxserver/resilio-sync:3.1.2
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8888"
- "${PANEL_APP_PORT_SYNC}:55555"
volumes:
- ${CONFIG_PATH}:/config
- ${DOWNLOADS_PATH}:/downloads
- ${SYNC_PATH}:/sync
- ${EXTERNAL_MOUNT_PATH}:${INTERNAL_MOUNT_PATH}
environment:
- PUID=${USER_ID}
- PGID=${GROUP_ID}
- TZ=${TIME_ZONE}
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true