文档首页/ 智果(AgentArts)智能体平台/ 常见问题/ 运行时/ 执行agentarts launch命令时出现ERROR: Repository 'xxx' not found报错
更新时间:2026-09-14 GMT+08:00
分享

执行agentarts launch命令时出现ERROR: Repository 'xxx' not found报错

问题现象

执行agentarts launch部署智能体,构建Docker镜像成功,但推送SWR镜像仓库阶段报错:ERROR: Repository 'xxx/xxx' not found。

问题原因

在于通过agentarts configure --entrypoint app:app做交互式配置时,SWR Repository输入的镜像仓库名称在SWR中不存在。

解决方案

使用nano .agentarts_config.yaml命令进入config文件,将organization_auto_create的值修改为true即可。

  1. 编辑配置文件
nano .agentarts_config.yaml 
  1. 在swr_config配置块下,设置repository_auto_create: true,同时填写自定义仓库名称:
swr_config:
  repository: "自定义仓库名"
  repository_auto_create: true
  1. 保存退出,重新执行agentarts launch。

相关文档