惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园_首页
H
Help Net Security
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
The Cloudflare Blog
腾讯CDC
Jina AI
Jina AI
Last Week in AI
Last Week in AI
月光博客
月光博客
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
爱范儿
爱范儿
N
Netflix TechBlog - Medium
F
Fortinet All Blogs

博客园 - 季枫

Proxifier for mac v3.15 armbian安装python3.12 英语学习:byoungd / English-level-up-tips Public 玩客云 casaOS的armbian系统启动后无法联网(没有ip地址解决办法) 通达信K线解析 ubuntu xfce4 terminal 中文乱码 windows 替代fiddler wsl安装ubuntu 20子系统和桌面 玩客云 armbian+CasaOS设置国内的源地址 资金多空线 ffmpeg 抖音下载的音频和视频合并: ps里如何把字弄成复印效果 win11 程序不能启动用--no-sandbox windows 访问armbian SMBA被拒绝 玩客云casaOS实现家里华为路由器访问,用于控制IPTV设置,远程管理小孩看电视 解决windows子系统wsl ubuntu的随机mac问题 六西格玛设计 | 如何运用质量功能展开(QFD)进行设计 windows系统安装ubuntu子系统,解决Easyconnect windows版本对监控软件的限制 解决nginx反向代理 Location重定向到内网地址问题 黑神话boss手残打发 openwrt 作为二级路由器,实现IPV6中继(中国移动宽带发布私有nas、网站等服务) 解决armbain系统挂载移动硬盘NTFS只能读,不能写问题 移动宽带公网IPV6地址检查 nas 移动宽带使用IPV6访问(打通ipv6) Python中的tushare入门
为casaos系统安装openclaw,解决访问docker仓库的问题
季枫 · 2026-06-06 · via 博客园 - 季枫

Posted on 2026-06-06 20:57  季枫  阅读(8)  评论()    收藏  举报

在casaos上看到有openclaw,但是安装的时候报错:

Error response from daemon: unknown: failed to resolve reference "docker.io/icewhaletech/openclaw:2026.5.7": unexpected status from HEAD request to https://vrtulz5k.mirror.aliyuncs.com/v2/icewhaletech/openclaw/manifests/2026.5.7?ns=docker.io: 403 Forbidden

1、修改/etc/docker/daemon.json

{
  "registry-mirrors": [
        "https://vrtulz5k.mirror.aliyuncs.com",
        "https://docker.m.daocloud.io",
        "https://dockerproxy.com",
        "https://docker.086181.xyz",
        "https://do.nark.eu.org"
    ],
    "ipv6":true,
    "fixed-cidr-v6":"2409:8a62:31c:c860::/64",
    "experimental":true,
    "ip6tables":true
}

修改后:设置了***** ver**ge代理

{
  "registry-mirrors": [
    ],
    "proxies": {
       "http-proxy": "http://192.168.3.x:7897",
       "https-proxy": "http://192.168.3.x:7897",
       "no-proxy": "localhost,127.0.0.1,172.17.0.0/16,192.168.0.0/16"
    },
    "ipv6":true,
    "fixed-cidr-v6":"2409:8a62:31c:c860::/64",
    "experimental":true,
    "ip6tables":true
}

 如果自己没有proxy,那就用docker.xuanyuan.me镜像,但是有流量限制,很烦

    "https://docker.xuanyuan.me",
    "https://docker.1ms.run",
    "https://docker.m.daocloud.io",

  使用:docker pull docker.io/icewhaletech/openclaw:2026.5.7,先试下