docker-云存储库查询未提供响应
docker-cloud repository query doesn't provide a response
我正在尝试使用此命令查询 docker-云存储库
docker-cloud repository ls
我收到了这个回复。
NAME IN_USE
我的存储库位于此处并且有活动图像
https://hub.docker.com/r/fellfromhell/workshop-python/
我做错了什么?
有 2 个不同的系统:Docker Hub 和 Docker Cloud。
Docker Hub is a cloud-based registry. Docker Cloud is a service which helps to deploy and manage Dockerized applications. You can link Docker Cloud to repositories hosted on a third party registry. The Docker Hub registry is linked automatically and all your Docker Hub repositories are listed in https://cloud.docker.com/_/repository/list,但是,不幸的是,命令
docker-cloud repository ls
returns 仅限第三方注册表中的存储库(请参阅
https://docs.docker.com/apidocs/docker-cloud/#external-repository)。
尽管如此,您仍然可以检查您的图像
docker-cloud repository inspect fellfromhell/workshop-python
并获取一些数据作为响应。这是 github 问题 https://github.com/docker/dockercloud-cli/issues/23
我正在尝试使用此命令查询 docker-云存储库
docker-cloud repository ls
我收到了这个回复。
NAME IN_USE
我的存储库位于此处并且有活动图像 https://hub.docker.com/r/fellfromhell/workshop-python/
我做错了什么?
有 2 个不同的系统:Docker Hub 和 Docker Cloud。
Docker Hub is a cloud-based registry. Docker Cloud is a service which helps to deploy and manage Dockerized applications. You can link Docker Cloud to repositories hosted on a third party registry. The Docker Hub registry is linked automatically and all your Docker Hub repositories are listed in https://cloud.docker.com/_/repository/list,但是,不幸的是,命令
docker-cloud repository ls
returns 仅限第三方注册表中的存储库(请参阅 https://docs.docker.com/apidocs/docker-cloud/#external-repository)。 尽管如此,您仍然可以检查您的图像
docker-cloud repository inspect fellfromhell/workshop-python
并获取一些数据作为响应。这是 github 问题 https://github.com/docker/dockercloud-cli/issues/23