rt,还请各位大佬帮忙看一下docker-compose.yaml
写的有没有问题
docker-compose.yaml
内容:
version: "3"
services:
halo:
image: halohub/halo:2.12.0-alpha.1
container_name: halo
restart: on-failure:3
network_mode: "host"
volumes:
- ./halo:/root/.halo2
command:
# 修改为自己已有的 MySQL 配置
- --spring.r2dbc.url=r2dbc:pool:mysql://localhost:3306/halo
- --spring.r2dbc.username=halo
- --spring.r2dbc.password=XXXXXXXXXXX
- --spring.sql.init.platform=mysql
# 外部访问地址,请根据实际需要修改
- --halo.external-url=https://xxxxxxx.com
# 端口号 默认8090
- --server.port=8090
# 缓存
- --halo.cache.page.disabled=false
halo2:
image: halohub/halo:2.12.0-alpha.1
container_name: halo
restart: on-failure:3
network_mode: "host"
volumes:
- ./halo2:/root/.halo2
command:
# 修改为自己已有的 MySQL 配置
- --spring.r2dbc.url=r2dbc:pool:mysql://localhost:3306/halo
- --spring.r2dbc.username=halo2
- --spring.r2dbc.password=xxxxxxxxxxx
- --spring.sql.init.platform=mysql
# 外部访问地址,请根据实际需要修改
- --halo.external-url=https://xxxxxxxxx2.com
# 端口号 默认8090
- --server.port=8091
# 缓存
- --halo.cache.page.disabled=false