feat: DataEase v1.18.25

This commit is contained in:
wanghe-fit2cloud
2024-10-10 11:58:06 +08:00
parent d23d3ab44a
commit 01b9fd9ee3
3 changed files with 1 additions and 1 deletions
@@ -0,0 +1,14 @@
# 数据库配置
spring.datasource.url=jdbc:mysql://${PANEL_DB_HOST}:3306/${PANEL_DB_NAME}?autoReconnect=false&useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8&zeroDateTimeBehavior=convertToNull&useSSL=false
spring.datasource.username=${PANEL_DB_USER}
spring.datasource.password=${PANEL_DB_USER_PASSWORD}
#新建用户初始密码
dataease.init_password=DataEase123456
#登录超时时间单位min 如果不设置 默认8小时也就是480
dataease.login_timeout=480
logger.level=INFO
#DE运行模式,可选值有 local、simple、cluster,分别对应 本地模式、精简模式、集群模式
engine_mode=simple
+55
View File
@@ -0,0 +1,55 @@
additionalProperties:
formFields:
- default: ""
envKey: PANEL_DB_HOST
key: mysql
labelEn: Database Service
labelZh: 数据库服务
required: true
type: service
- default: de
envKey: PANEL_DB_NAME
labelEn: Database
labelZh: 数据库名
random: true
required: true
rule: paramCommon
type: text
- default: de
envKey: PANEL_DB_USER
labelEn: User
labelZh: 数据库用户
random: true
required: true
rule: paramCommon
type: text
- default: de
envKey: PANEL_DB_USER_PASSWORD
labelEn: Password
labelZh: 数据库用户密码
random: true
required: true
rule: paramComplexity
type: password
- default: admin
disabled: true
envKey: DE_ADMIN
labelEn: Admin User
labelZh: 管理员
required: true
type: text
- default: dataease
disabled: true
envKey: DE_ADMIN_PASSWORD
labelEn: Admin Password
labelZh: 管理员默认密码
required: true
type: text
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
+30
View File
@@ -0,0 +1,30 @@
services:
dataease:
image: registry.cn-qingdao.aliyuncs.com/dataease/dataease:v1.18.25
restart: always
container_name: ${CONTAINER_NAME}
ports:
- ${PANEL_APP_PORT_HTTP}:8081
volumes:
- ./conf:/opt/dataease/conf
- ./logs:/opt/dataease/logs
- ./plugins/thirdpart:/opt/dataease/plugins/thirdpart
- ./data/static-resource:/opt/dataease/data/static-resource
- ./custom-drivers:/opt/dataease/custom-drivers
- ./data/custom:/opt/dataease/data/custom
- ./data/business:/opt/dataease/data/business
- ./data/exportData:/opt/dataease/data/exportData
environment:
PANEL_DB_HOST: ${PANEL_DB_HOST}
PANEL_DB_PORT: 3306
PANEL_DB_USER: ${PANEL_DB_USER}
PANEL_DB_USER_PASSWORD: ${PANEL_DB_USER_PASSWORD}
PANEL_DB_NAME: ${PANEL_DB_NAME}
shm_size: 1gb
networks:
- 1panel-network
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true