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

https://github.com/lresende/node-app-container

Sample node app runing inside a Docker Container
https://github.com/lresende/node-app-container

Last synced: 7 months ago
JSON representation

Sample node app runing inside a Docker Container

Awesome Lists containing this project

README

          

Running a sample node application inside Docker.io container
==============================================================

Create docker image:

$ sudo docker build --rm --no-cache -t node-app .

Run docker image:

$ sudo docker run -p 8080:3000 -d node-app

Access your running app

http://localhost:8080