Update Apps
This commit is contained in:
4
apps/pingvin-share/1.13.0/.env.sample
Normal file
4
apps/pingvin-share/1.13.0/.env.sample
Normal file
@@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME="pingvin-share"
|
||||
PANEL_APP_PORT_HTTP="40068"
|
||||
DATA_PATH="./data/data"
|
||||
UPLOAD_PATH="./data/images"
|
||||
24
apps/pingvin-share/1.13.0/data.yml
Normal file
24
apps/pingvin-share/1.13.0/data.yml
Normal 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
|
||||
18
apps/pingvin-share/1.13.0/docker-compose.yml
Normal file
18
apps/pingvin-share/1.13.0/docker-compose.yml
Normal 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.13.0
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
Reference in New Issue
Block a user