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

https://github.com/bobbyiliev/sample-nodejs-docker


https://github.com/bobbyiliev/sample-nodejs-docker

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# Sample Dockerized Node.js app

Build command:

```sh
docker build --build-arg BUILD_VAR1=value1 --build_arg BUILD_VAR2=value2 -t simple-node-app .
```

Run command:

```sh
docker run -d -p 3000:3000 -e RUN_SECRET1=secretValue1 -e RUN_SECRET2=secretValue2 simple-node-app
```