github 2020年推出的 docker 镜像托管服务。官方把 hass addons 所有镜像的镜像源换成 ghcr.io
国内链接 github 多难基本下载只有 50KB左右,而且国内也没有针对 ghcr.io 的加速镜像,所以要么忍一下,等国内阿里云等建好 ghcr.io 的加速源,要么就逐步抛弃 supervisor 吧。
现在supervisor 托管都依赖 github,如果你无法连接或者连接 github很慢,根本无法使用 supervisor。因为 pull 镜像的时间太长,supervisor 会认定你 pull 失败,不会等待~
硬要用也是有办法,自己看 supervisor 的日志获得 addons 的名字,例如 ghcr.io/hassio-addons/grafana/amd64:6.1.2 然后再手动执行
经过漫长等待后再到 supervisor 里面装一下 grafana 这样就能用~
国内链接 github 多难基本下载只有 50KB左右,而且国内也没有针对 ghcr.io 的加速镜像,所以要么忍一下,等国内阿里云等建好 ghcr.io 的加速源,要么就逐步抛弃 supervisor 吧。
现在supervisor 托管都依赖 github,如果你无法连接或者连接 github很慢,根本无法使用 supervisor。因为 pull 镜像的时间太长,supervisor 会认定你 pull 失败,不会等待~
硬要用也是有办法,自己看 supervisor 的日志获得 addons 的名字,例如 ghcr.io/hassio-addons/grafana/amd64:6.1.2 然后再手动执行
docker pull ghcr.io/hassio-addons/grafana/amd64:6.1.2
经过漫长等待后再到 supervisor 里面装一下 grafana 这样就能用~
0