I have a docker image which installs grunt, but when I try to run it, I get an error:
grunt
Error response from daemon: Cannot start container foo_1
I found the same problem. I did the following:
docker run -ti devops -v /tmp:/tmp /bin/bash
When I change it to
docker run -ti -v /tmp:/tmp devops /bin/bash
it works fine.