From 8859f2bf3595ce60c9f9dcf75a1c0eec2cf70598 Mon Sep 17 00:00:00 2001 From: Hans Kristian Flaatten Date: Fri, 30 Oct 2015 20:20:30 +0100 Subject: [PATCH 1/2] Use node:4 image for Node.js examples --- node/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/content.md b/node/content.md index b1921edd3..33af0d8bc 100644 --- a/node/content.md +++ b/node/content.md @@ -15,7 +15,7 @@ Node.js internally uses the Google V8 JavaScript engine to execute code; a large ## Create a `Dockerfile` in your Node.js app project ```dockerfile -FROM node:0.10-onbuild +FROM node:4-onbuild # replace this with your application's default port EXPOSE 8888 ``` @@ -36,5 +36,5 @@ The image assumes that your application has a file named [`package.json`](https: For many simple, single file projects, you may find it inconvenient to write a complete `Dockerfile`. In such cases, you can run a Node.js script by using the Node.js Docker image directly: ```console -$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp node:0.10 node your-daemon-or-script.js +$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/app -w /usr/src/app node:4 node your-daemon-or-script.js ``` From 445470dbd7e24e84b4307fa918af27854eea10f2 Mon Sep 17 00:00:00 2001 From: Hans Kristian Flaatten Date: Fri, 30 Oct 2015 20:35:42 +0100 Subject: [PATCH 2/2] Update io.js and Node.js repo links --- update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.sh b/update.sh index 61913a371..2caab7ce8 100755 --- a/update.sh +++ b/update.sh @@ -39,7 +39,7 @@ declare -A otherRepos=( [haskell]='https://github.com/freebroccolo/docker-haskell' [hipache]='https://github.com/dotcloud/hipache' [hylang]='https://github.com/hylang/hy' - [iojs]='https://github.com/iojs/docker-iojs' + [iojs]='https://github.com/nodejs/docker-iojs' [irssi]='https://github.com/jfrazelle/irssi' [jenkins]='https://github.com/cloudbees/jenkins-ci.org-docker' [jetty]='https://github.com/appropriate/docker-jetty' @@ -52,7 +52,7 @@ declare -A otherRepos=( [neo4j]='https://github.com/neo4j/docker-neo4j' [neurodebian]='https://github.com/neurodebian/dockerfiles' [nginx]='https://github.com/nginxinc/docker-nginx' - [node]='https://github.com/joyent/docker-node' + [node]='https://github.com/nodejs/docker-node' [odoo]='https://github.com/odoo/docker' [opensuse]='https://github.com/openSUSE/docker-containers-build' [oraclelinux]='https://github.com/oracle/docker'