1
0

chore(deps): update kibana docker tag to v9.3.1 (localApps) (#4246)

This commit is contained in:
renovate[bot]
2026-02-27 00:37:53 +00:00
committed by GitHub
parent 18248e6680
commit 4d069b93cd
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
additionalProperties:
formFields:
- default: "./data"
edit: true
envKey: KIBANA_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
label:
en: Data persistence path
zh: 数据持久化路径
required: true
type: text
- default: 5601
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
label:
en: WebUI port
zh: WebUI 端口
required: true
rule: paramPort
type: number
- default: "https://127.0.0.1:9200"
edit: true
envKey: elasticsearch_hosts
labelZh: Elasticsearch 地址
labelEn: Elasticsearch address
label:
en: Elasticsearch address
zh: Elasticsearch 地址
required: true
type: text

View File

@@ -0,0 +1,24 @@
networks:
1panel-network:
external: true
services:
kibana:
image: kibana:9.3.1
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:5601
volumes:
- ${KIBANA_ROOT_PATH}:/usr/share/kibana/data
environment:
- SERVER_NAME="kibana"
- SERVER_HOST="0.0.0.0"
- SERVER_PORT=5601
- I18N_LOCALE="zh-CN"
- SERVER_SHUTDOWNTIMEOUT="5s"
- MONITORING_UI_CONTAINER_ELASTICSEARCH_ENABLED=true

View File

@@ -0,0 +1,15 @@
#!/bin/bash
if [ -f .env ]; then
source .env
mkdir -p $KIBANA_ROOT_PATH
mkdir -p "$KIBANA_ROOT_PATH/data"
chown -R 1000:1000 $KIBANA_ROOT_PATH
echo "Check Finish."
else
echo "Error: .env file not found."
fi