An open API service indexing awesome lists of open source software.

https://github.com/utnaf/practical-docker

A Simple step-by-step application that uses Docker for both development and deploy.
https://github.com/utnaf/practical-docker

docker

Last synced: about 2 months ago
JSON representation

A Simple step-by-step application that uses Docker for both development and deploy.

Awesome Lists containing this project

README

          

# Practical Docker

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

## Requirements

- NodeJS or [nvm](https://nvm.sh)

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
```