Difference between revisions of "Docker Image for developing"

From ESS-WIKI
Jump to: navigation, search
(Created page with "=Setup a Docker Image for developing NodeJS RESTfful API= mkdir a folder ex: EISRestfulAPI git clone https://github.com/ericliang12345/EISRestfulAPI_Dockerfile.git sudo doc...")
(No difference)

Revision as of 03:55, 11 October 2016

Setup a Docker Image for developing NodeJS RESTfful API

mkdir a folder ex: EISRestfulAPI
git clone https://github.com/ericliang12345/EISRestfulAPI_Dockerfile.git
sudo docker build -t eis/restapi_dev .

Run a Docker Container

sudo docker run -it --name eis_api_dev -v $PWD:/home/adv:rw -p 3000:3000 eis/restapi_dev /bin/bash </br>
-v : share your local foder with container
-p : port mapping internal / external port
-name: container name
eis/restapi: image