1
0

chore(deps): update halohub/halo docker tag to v2.22.14 (#3929)

This commit is contained in:
renovate[bot]
2026-02-08 17:10:13 +00:00
committed by GitHub
parent 883b88f491
commit 61f593be57
4 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
additionalProperties:
formFields:
- default: "./data"
edit: true
envKey: HALO_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
label:
en: Data persistence path
zh: 数据持久化路径
required: true
type: text
- default: 8090
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: 访问端口
labelEn: Port
label:
en: Port
zh: 访问端口
required: true
rule: paramPort
type: number
- default: "http://127.0.0.1:8090"
edit: true
envKey: HALO_EXTERNAL_URL
labelZh: 公网访问地址
labelEn: External URL
label:
en: External URL
zh: 公网访问地址
required: true
rule: paramExtUrl
type: text

View File

@@ -0,0 +1,22 @@
networks:
1panel-network:
external: true
services:
halo:
image: halohub/halo:2.22.14
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8090
volumes:
- ${HALO_ROOT_PATH}/data:/root/.halo2
environment:
- JVM_OPTS=-Xmx256m -Xms256m
command:
- --spring.sql.init.platform=h2
- --halo.external-url=${HALO_EXTERNAL_URL}