Hello. I am new to Docker. I am currently following the tutorial to build a Sample Application, and have reached step 2. This is the URL: Sample application | Docker Documentation
I am currently stuck on “Start an app container”, where I have to put this in the command of a terminal:
docker run -dp 3000:3000 getting-started
After typing this in the command I have to go to a site on a web browser called: http://localhost:3000
When going to the site, I should see an app.
However, when I open the site, I don’t see an app. Instead I see:
This page isn’t working
localhost didn’t send any data.
ERR_EMPTY_RESPONSE
I tried running docker run -dp 3000:3000 getting-started in the command repeatedly after this, however it said the port is already allocated,
How can I get the page to work so that I can continue with the tutorial? Thank you.