各位大神给看下,我刚安装了docker版的homeassisatant,但是装好之后那个端口快捷链接没有了,啥情况啊?

services:
homeassistant:
container_name: homeassistant
image: ghcr.nju.edu.cn/hasscc/hacn:stable
volumes:
- /vol1/1000/docker/haos:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
ports:
- 8123:8123
environment:
- TZ=Asia/Shanghai
- ALWAYS_INSTALL=true # 默认为true,每次启动都会逐个预装,否则仅全新HA才会预装
- ALWAYS_UPGRADE=true # 默认为false,每次启动都会逐个预装最新版本的插件
restart: always
privileged: true
network_mode: host
healthcheck:
test: [CMD-SHELL, curl -I localhost:8123 || exit 1]