Expected behavior
Build a docker image
Actual behavior
After first attempt (Fresh install of Docker for Mac) the image gets into downloading the bases, stops halfway through and hangs. After this, no docker commands work at all, they all simply hang.
Running diagnostic showed everything is fine except docker ps times out after 10 seconds.
I also was prompted to update Docker for Mac 3-4 hours into putting this on hold, installed the update, which restarted Docker for Max and the daemon (before the update it just hung when I asked it to restart), but still hangs on all commands.
Information
Diagnostic ID: 3CE43FEC-613B-4DF2-8C04-67558001C2F7
Dockerfile:
FROM node:5
RUN mkdir -p /usr/src
WORKDIR /usr/src
RUN git clone GitHub - joeferner/redis-commander: Redis management tool written in node.js
&& cd redis-commander
&& npm install -g redis-commander
ENTRYPOINT [ “redis-commander” ]
EXPOSE 8081