Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 425 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 425 Bytes

Practical Docker

We have a simple Express app that serves a static JSON.

Requirements

  • NodeJS or nvm

If you have nvm installed use the nvm use command to set your Node version to 14.15.0.

Run

npm install
npm start

Visit http://localhost:3000.

Dev

For developing you can use the watch command to restart the server automatically when a file changes.

npm run watch