Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 463 Bytes

README.md

File metadata and controls

16 lines (15 loc) · 463 Bytes

Playing around with Docker + Node.js + Express

Open in Gitpod

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