1
0

Update app version [skip ci]

This commit is contained in:
github-action update-app-version
2025-04-07 14:38:56 +00:00
parent 7de33b3a02
commit 7d183b7ad2
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
CONTAINER_NAME="pingvin-share"
PANEL_APP_PORT_HTTP="40068"
DATA_PATH="./data/data"
UPLOAD_PATH="./data/images"

View File

@@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: 40068
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: ./data/data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text
- default: ./data/images
edit: true
envKey: UPLOAD_PATH
labelEn: Site icon path
labelZh: 自定义站点图标路径
required: true
type: text

View File

@@ -0,0 +1,18 @@
services:
pingvin-share:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:3000"
volumes:
- "${DATA_PATH}:/opt/app/backend/data"
- "${UPLOAD_PATH}:/opt/app/frontend/public/img"
image: stonith404/pingvin-share:v1.11.1
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true