Skip to content

Update docker image version from argon to boron #1083

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 26, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions locale/en/docs/guides/nodejs-docker-webapp.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ touch Dockerfile
Open the `Dockerfile` in your favorite text editor

The first thing we need to do is define from what image we want to build from.
Here we will use the latest LTS (long term support) version `argon` of `node`
Here we will use the latest LTS (long term support) version `boron` of `node`
available from the [Docker Hub](https://hub.docker.com/):

```docker
FROM node:argon
FROM node:boron
```

Next we create a directory to hold the application code inside the image, this
Expand Down Expand Up @@ -128,7 +128,7 @@ CMD [ "npm", "start" ]
Your `Dockerfile` should now look like this:

```docker
FROM node:argon
FROM node:boron

# Create app directory
RUN mkdir -p /usr/src/app
Expand Down Expand Up @@ -175,7 +175,7 @@ $ docker images

# Example
REPOSITORY TAG ID CREATED
node argon 539c0211cd76 3 weeks ago
node boron 539c0211cd76 3 weeks ago
<your username>/node-web-app latest d64d3505b0d2 1 minute ago
```

Expand Down