Bluemix 无法列出 docker 个图像

Bluemix can not list docker images

我已通过命令 ice login 成功登录 bluemix 容器服务,输出如下:

Authentication with container cloud service at https://api-ice.ng.bluemix.net/v1.0/containers completed successfully
You can issue commands now to the container service

Proceeding to authenticate with the container cloud registry at registry-ice.ng.bluemix.net
Login Succeeded

ice ps -a 也能正常工作,但是当发出 ice images 时,它失败了:

$ ice --verbose images
@2015-05-07 13:59:29.221306 - Namespace(cloud=False, local=False, subparser_name='images', verbose=True)
@2015-05-07 13:59:29.221370 - request url: https://api-ice.ng.bluemix.net/v1.0/containers/images/json
@2015-05-07 13:59:30.012412 - Return code: 404   Return reason: NOT FOUND
@2015-05-07 13:59:30.012439 - Req-ID: a382f2f79d54b157
@2015-05-07 13:59:30.012451 - Exit err level = 1

这是命令行版本:

$ ice version
ICE CLI Version        : 2.0.1 000 2015-03-26T19:51:27

注意 ice images 上周有效。

服务器端有什么变化吗?

尝试用这个登录 ice

ice login -a https://api.ng.bluemix.net -H https://api-ice.ng.bluemix.net/v2/containers -R registry-ice.ng.bluemix.net 

这是我在 运行 ice --verbose images

时得到的结果
bash-3.2$ ice --verbose images
@2015-05-08 14:54:49.692386 - Namespace(cloud=False, local=False,     subparser_name='images', verbose=True)
@2015-05-08 14:54:49.692455 - request url: https://api-ice.ng.bluemix.net/v2/containers/images/json
@2015-05-08 14:54:49.692466 - using bearer token and space id
@2015-05-08 14:54:49.692482 - config.json path: /Users/stanli/.cf/config.json

您的 ice 命令似乎指向 api 的 v1。

-斯坦