51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Hello Halo

搭建日志: {#%E6%90%AD%E5%BB%BA%E6%97%A5%E5%BF%97%EF%BC%9A}

**底层平台:**群晖SA6400 Container Manager docker容器

**搭建方式:**Docker Compose 示例如下。

version: "3"

services:
halo:
image: halohub/halo:2.14
restart: on-failure:3
depends_on:
halodb:
condition: service_healthy
networks:
halo_network:
volumes:
- ./halo2:/root/.halo2
ports:
- "8090:8090"
healthcheck:
test: \["CMD", "curl", "-f", "http://localhost:8090/actuator/health/readiness"\]
interval: 30s
timeout: 5s
retries: 5
start_period: 30s

command:
- --spring.r2dbc.url=r2dbc:pool:postgresql://halodb/halo
- --spring.r2dbc.username=halo
# PostgreSQL 的密码,请保证与下方 POSTGRES_PASSWORD 的变量值一致。
- --spring.r2dbc.password=openpostgresql
- --spring.sql.init.platform=postgresql
# 外部访问地址,请根据实际需要修改
- --halo.external-url=http://localhost:8090/
halodb:
image: postgres:15.4
restart: on-failure:3
networks:
halo_network:
volumes:
- ./db:/var/lib/postgresql/data
healthcheck:
test: \[ "CMD", "pg_isready" \]
interval: 10s
timeout: 5s
retries: 5
environment:
- POSTGRES_PASSWORD=openpostgresql
- POSTGRES_USER=halo
- POSTGRES_DB=halo
- PGUSER=halo

`networks:
halo_network:`

**数据库:**MariaDB 10

**反向代理:**Nginx

相关链接 {#%E7%9B%B8%E5%85%B3%E9%93%BE%E6%8E%A5}

在使用过程中,有任何问题都可以通过以上链接找寻答案,或者联系Halo。


赞(0)
未经允许不得转载:工具盒子 » Hello Halo