I\'ve been trying to figure this out in the last hours but I\'m stuck.
I have a very simple Dockerfile which looks like this:
FROM alpine:3.6
COPY gempbo
Adding to the accepted answer: I had the same error message trying to run docker/getting-started.
The problem was that "getting-started" is using port 80 and this was
"occupied" (netsh http show urlacl
) on my machine.
I had to use docker run -d -p 8888:80 docker/getting-started
where
8888 was an unused port. And then open "http://localhost:8888/tutorial/".