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
- Host: GitHub
- URL: https://github.com/lresende/node-app-container
- Owner: lresende
- License: apache-2.0
- Created: 2015-01-02T19:35:50.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-02T19:50:36.000Z (almost 11 years ago)
- Last Synced: 2025-01-17T09:36:53.288Z (9 months ago)
- Size: 223 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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