Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 331 Bytes

docker.md

File metadata and controls

12 lines (9 loc) · 331 Bytes

Starting with Docker

First we will build and run a docker image.

Inside the application folder run the below steps:

  1. npm run image:build
  2. npm run image:run
  3. In a browser open http://localhost:3000

Once you have verified it has worked you can stop the image with

  1. docker ps
  2. docker stop <our container id>