mirror of
https://github.com/arch3rPro/1Panel-Appstore.git
synced 2026-04-20 11:57:11 +08:00
feat: update piclist 2.0.4
This commit is contained in:
4
apps/piclist/2.0.4/.env.sample
Normal file
4
apps/piclist/2.0.4/.env.sample
Normal file
@@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME="piclist"
|
||||
DATA_PATH="./data"
|
||||
PANEL_APP_PORT_HTTP=36677
|
||||
AUTH_KEY="password"
|
||||
26
apps/piclist/2.0.4/data.yml
Normal file
26
apps/piclist/2.0.4/data.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "36677"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "./data"
|
||||
edit: true
|
||||
envKey: DATA_PATH
|
||||
labelEn: Data Path
|
||||
labelZh: 数据路径
|
||||
required: true
|
||||
type: text
|
||||
- default: "password"
|
||||
edit: true
|
||||
envKey: AUTH_KEY
|
||||
labelEn: Auth Key
|
||||
labelZh: 授权密钥
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
17
apps/piclist/2.0.4/docker-compose.yml
Normal file
17
apps/piclist/2.0.4/docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
piclist:
|
||||
image: kuingsmile/piclist:v2.0.4
|
||||
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
|
||||
Reference in New Issue
Block a user