krsyoung
krsyoung

Reputation: 1241

bluemix "docker images" results in "json: cannot unmarshal string into Go value of type int"

I have successfully uploaded two images from the docker registry to my IBM Bluemix registry, which I can see when logging into the Bluemix UI. However, I am unable to list the images using the CLIs.

Using the docker command I receive the following:

krsyoung:code krsyoung$ docker images
json: cannot unmarshal string into Go value of type int

And with cf ic:

krsyoung:code krsyoung$ cf ic images
json: cannot unmarshal string into Go value of type int

Invalid IBM-Containers commands or docker commands.
Available IBM Containers commands are {login, group, ip, route,     volume, namespace, info}
In addition, IBM Containers supports native docker cli passthrough, run cf ic help for more details

Here are the versions of software I'm running:

krsyoung:code krsyoung$ docker --version
Docker version 1.7.0, build 0baf609

krsyoung:code krsyoung$ cf --version
cf version 6.12.0-8c65bbd-2015-06-30T00:05:01+00:00

krsyoung:code krsyoung$ cf plugins
Listing Installed Plugins...
OK

Plugin Name      Version   Command Name   Command Help   
IBM-Containers   0.8.598   ic             IBM-Containers Plugin

Adding the debug flag does not help. Any ideas?

Thanks!

Upvotes: 0

Views: 674

Answers (1)

Ram Vennam
Ram Vennam

Reputation: 3546

Please use docker 1.6.2. Docker 1.7 isn't supported at the moment

Upvotes: 1

Related Questions