Here is my collection of folders containing Dockerfile from around the web.
-
Build and/or navigate to a container folder.
-
Clone this and navigate into the node-ubuntu folder.
-
Build a Docker image using the Dockerfile:
docker build -t msanand/node .
-
Create a Node container from the custom image and link it to the Redis container:
docker run -d --name node -p 8080 --link redis:redis msanand/node