1
0

chore(deps): update jericx/syncclipboard-server docker tag to v3.1.1 (#3903)

This commit is contained in:
renovate[bot]
2026-02-06 13:04:06 +00:00
committed by GitHub
parent 152e1d79a8
commit 59863e219f
4 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
CONTAINER_NAME="syncclipboard-server"
PANEL_APP_PORT_HTTP="40229"
CONFIG_FILE_PATH="./data/appsettings.json"

View File

@@ -0,0 +1,23 @@
additionalProperties:
formFields:
- default: 40229
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
label:
en: Port
zh: 端口
required: true
rule: paramPort
type: number
- default: ./data/appsettings.json
disabled: true
envKey: CONFIG_FILE_PATH
labelEn: Configuration file path
labelZh: 配置文件路径
label:
en: Configuration file path
zh: 配置文件路径
required: true
type: text

View File

@@ -0,0 +1,20 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:5033"
}
}
},
"AppSettings": {
"UserName": "admin",
"Password": "admin"
}
}

View File

@@ -0,0 +1,17 @@
services:
syncclipboard-server:
image: jericx/syncclipboard-server:v3.1.1
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:5033"
volumes:
- ${CONFIG_FILE_PATH}:/app/appsettings.json
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true