https://github.com/eon01/docker_nodejs
A docker machine for Nodejs projects
https://github.com/eon01/docker_nodejs
Last synced: 11 months ago
JSON representation
A docker machine for Nodejs projects
- Host: GitHub
- URL: https://github.com/eon01/docker_nodejs
- Owner: eon01
- License: lgpl-3.0
- Created: 2015-09-16T15:44:35.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-16T16:03:06.000Z (almost 11 years ago)
- Last Synced: 2025-02-22T07:47:58.807Z (over 1 year ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker_nodejs
A docker machine for Nodejs projects
# How To:
* Install Docker on your machine, eg. Ubuntu: https://docs.docker.com/installation/ubuntulinux/
* Get Dockerfile:
```
git clone https://github.com/eon01/docker_nodejs
cd docker_nodejs
sudo docker build -t nodejs .
sudo docker run -i -t -p 8081:8080 nodejs
```
Now you can see server runnuing at: http://127.0.0.1:8081