1
0

chore(deps): update kuingsmile/piclist docker tag to v2.3.3 (#3809)

This commit is contained in:
renovate[bot]
2026-02-02 02:11:30 +00:00
committed by GitHub
parent 3fb4a34e46
commit 1e59ef9469
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
CONTAINER_NAME="piclist"
DATA_PATH="./data"
PANEL_APP_PORT_HTTP=40333
AUTH_KEY="password"

View File

@@ -0,0 +1,35 @@
additionalProperties:
formFields:
- default: "40333"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
label:
en: Port
zh: 端口
required: true
rule: paramPort
type: number
- default: "./data"
edit: true
envKey: DATA_PATH
labelEn: Data Path
labelZh: 数据路径
label:
en: Data Path
zh: 数据路径
required: true
type: text
- default: "password"
edit: true
envKey: AUTH_KEY
labelEn: Auth Key
labelZh: 授权密钥
label:
en: Auth Key
zh: 授权密钥
random: true
required: true
rule: paramComplexity
type: password

View File

@@ -0,0 +1,18 @@
services:
piclist:
image: "kuingsmile/piclist:v2.3.3"
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:36677"
volumes:
- "${DATA_PATH}:/root/.piclist"
command: node /usr/local/bin/picgo-server -k ${AUTH_KEY}
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true