功能介绍:
调整下方参数为本机数据库IP地址、账号、密码。其他参数可自定义!
- --spring.r2dbc.url=r2dbc:pool:mysql://192.168.8.100:3306/halo
- --spring.r2dbc.username=root
- --spring.r2dbc.password=111111
以下为完整文件,无问题,保存参数。
version: "3"
services:
halo:
image: halohub/halo:2.13
container_name: halo
restart: on-failure:3
network_mode: "host"
volumes:
- ./halo2:/root/.halo2
command:
# 修改为自己已有的 MySQL 配置
- --spring.r2dbc.url=r2dbc:pool:mysql://192.168.8.100:3306/halo
- --spring.r2dbc.username=root
- --spring.r2dbc.password=111111
- --spring.sql.init.platform=mysql
# 外部访问地址,请根据实际需要修改
- --halo.external-url=http://localhost:8090/
# 端口号 默认8090
- --server.port=8090
执行以下命令安装镜像。
docker-compose up -d
halo
数据库即可。