Reputation: 20222
I have installed the Docker Toolbox from here https://www.docker.com/products/docker-toolbox on my computer(which has OSX). If I try running something like:
docker run -p 8888:8888 -it --rm b.gcr.io/tensorflow-udacity/assignments:0.5.0
I am getting this issue:
docker: Cannot connect to the Docker daemon. Is the docker daemon running on this host?.
See 'docker run --help'.
After looking here https://github.com/docker/docker/issues/17645 I tried using
sudo service docker start
However, I am getting this message:
sudo: service: command not found
So how can I run docker on my computer?
Upvotes: 0
Views: 228
Reputation: 9116
Use the new 'Docker Shell' that also got installed and stuff should automatically be on your path.
Upvotes: 1