Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2024-12-10 09:05:50 +00:00
parent be6b08014b
commit 1a4657c66c
45 changed files with 676 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# 数据持久化路径 [必填]
HALO_ROOT_PATH=/home/halo
# 访问端口 [必填]
PANEL_APP_PORT_HTTP=8090
# 公网访问地址 [必填]
HALO_EXTERNAL_URL=http://127.0.0.1:8090
+21
View File
@@ -0,0 +1,21 @@
networks:
1panel-network:
external: true
services:
halo:
command:
- --spring.sql.init.platform=h2
- --halo.external-url=${HALO_EXTERNAL_URL}
container_name: halo-h2
environment:
- JVM_OPTS=-Xmx256m -Xms256m
image: halohub/halo:2.20.11
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8090
restart: always
volumes:
- ${HALO_ROOT_PATH}/data:/root/.halo2
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai