1
0

Add cashbook

This commit is contained in:
kriss
2024-08-06 21:53:56 +08:00
parent e11a007a75
commit 71a6ee5d1f
9 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
CONTAINER_NAME="cashbook"
DATA_PATH="./data"
PANEL_APP_PORT_HTTP="40880"

View File

@@ -0,0 +1,17 @@
additionalProperties:
formFields:
- default: 40088
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: WebUI Port
labelZh: 网页端口
required: true
rule: paramPort
type: number
- default: ./data
edit: true
envKey: DATA_PATH
labelEn: Data storage folder
labelZh: 数据存放文件夹
required: true
type: text

View File

@@ -0,0 +1,17 @@
services:
cashbook:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:80"
volumes:
- "${DATA_PATH}:/app/resources/app/data"
image: dingdangdog/cashbook:latest
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true