Playing around with Docker + Node.js + Express To run this type docker build -t node-express-api:latest . docker run --name user-api -d -p 3000:3000 node-express-api:latest Then go to http://localhost:3000/ Cleanup docker stop user-api docker rm user-api docker rmi node-express-api:latest