Dockerizing a Node.js web app

title: Dockerizing a Node.js web app
layout: docs.hbs

Dockerizing a Node.js web app

The goal of this example is to show you how to get a Node.js application into a Docker container. It assumes you have a working Docker installation and a basic understanding of how a Node.js application is structured.
这个列子的目的是告诉你怎样将一个 Node.js应用放到Docker容器中。它假定你有一个工作中的Docker 安装并且基本了解如何构建Node.js应用。
In the first part of this guide we will create a simple web application in Node.js, then we will build a Docker image for that application, and lastly we will run the image as container.
在本指南的第一部分我们将创建一个简单的Node.js web应用,然后为应用建一个Docker image,最后作为容器运行 image。
Docker allows you to package an application with all of its dependencies into a standardized unit, called a container, for software development. A container is a stripped-to-basics version of a Linux operating system. An image is software you load into a container.
Docker 允许你将包含所有依赖的应用打包到一个被称为container(容器)的标准单位中,为软件开发。一个container是剥离基本版本的Linux操作系统。一个Image是你装入容器的软件。

Create the Node.js app

创建Node.js应用

First, create a new directory where all the files would live. In this directory create a package.json file that describes your app and its dependencies:
首先,创建一个新目录为所有文件的根。在这个目录创建一个package.json文件描述应用和它的依赖:

{
  "name": "docker_web_app",
  "version": "1.0.0",
  "description": "Node.js on Docker",
  "author": "First Last <first.last@example.com>",
  "main": "server.js",
  "dependencies": {
    "express": "^4.13.3"
  }
}

Then, create an server.js file that defines a web app using the
Express.js framework:
然后,创建server.js文件定义web应用使用Express.js 框架:

'use strict';

const express = require('express');

// Constants
const PORT = 8080;

// App
const app = express();
app.get('/', function (req, res) {
  res.send('Hello world\n');
});

app.listen(PORT);
console.log('Running on http://localhost:' + PORT);

In the next steps, we'll look at how you can run this app inside a Docker container using the official Docker image. First, you'll need to build a Docker image of your app.
在下一步,我们将看看如何在一个Docker容器中使用官方Docker image运行这个应用。首先,你需要在应用中建一个Docker image。

Creating a Dockerfile

Create an empty file called Dockerfile:
创建空文件名叫Dockerfile:

touch Dockerfile

Open the Dockerfile in your favorite text editor
用你喜欢的文本编辑器打开Dockerfile
The first thing we need to do is define from what image we want to build from.
第一件事我们要定义我们想要从什么 image 建造。
Here we will use the latest LTS (long term support) version argon of nodeavailable from the Docker Hub:
这里我们将使用最后 LTS(长期支持)版本 argon of node可从Docker Hub得到:

FROM node:argon

Next we create a directory to hold the application code inside the image, this will be the working directory for your application:
下一步我们在image中创建目录来存放应用代码,这将是你应用的工作目录:

# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

This image comes with Node.js and NPM already installed so the next thing we need to do is to install your app dependencies using the npm binary:
这个image 依赖Node.js和NPM已经安装,所以我们 下一步需要做的事情就是安装你的应用程序依赖性使用 npm 二进制文件:

# Install app dependencies
COPY package.json /usr/src/app/
RUN npm install

To bundle your app's source code inside the Docker image, use the COPYinstruction:
使用COPY指令复制应用代码到Docker image中。

# Bundle app source
COPY . /usr/src/app

Your app binds to port 8080 so you'll use the EXPOSE instruction to have it mapped by the docker daemon:
你的app绑定到8080端口,所以使用EXPOSE指令映射这个端口到 docker 守护进程:

EXPOSE 8080

Last but not least, define the command to run your app using CMD which defines your runtime. Here we will use the basic npm start which will run node server.js to start your server:
最后,命令CMD定义你的运行时运行应用。这里我们使用基本的npm start将运行node server.js来开启你的服务:

CMD [ "npm", "start" ]

Your Dockerfile should now look like this:
你的Dockerfile 应该像这样:

FROM node:argon

# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

# Install app dependencies
COPY package.json /usr/src/app/
RUN npm install

# Bundle app source
COPY . /usr/src/app

EXPOSE 8080
CMD [ "npm", "start" ]

Building your image

建立你的 image

Go to the directory that has your Dockerfile and run the following command to build the Docker image. The -t flag lets you tag your image so it's easier to find later using the docker images command:
去有Dockerfile的目录运行下面的命令建立Docker image。-t 标志你的image方便你以后查找使用docker images

$ docker build -t <your username>/node-web-app .

Your image will now be listed by Docker:
你的image可以显示在Docker列表

$ docker images

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

Run the image

运行image

Running your image with -d runs the container in detached mode, leaving the container running in the background. The -p flag redirects a public port to a private port inside the container. Run the image you previously built:
运行您的image , -d运行在分离模式的容器,离开的容器中运行在后台。-p将公共端口到一个私有端口。运行你先前建立的image:

$ docker run -p 49160:8080 -d <your username>/node-web-app

Print the output of your app:

# Get container ID
$ docker ps

# Print app output
$ docker logs <container id>

# Example
Running on http://localhost:8080

If you need to go inside the container you can use the exec command:
如果你需要进入容器可以使用exec命令:

# Enter the container
$ docker exec -it <container id> /bin/bash

Test

To test your app, get the port of your app that Docker mapped:
要测试你的应用,得到应用的Docker端口映射

$ docker ps

# Example
ID            IMAGE                                COMMAND    ...   PORTS
ecce33b30ebf  <your username>/node-web-app:latest  npm start  ...   49160->8080

In the example above, Docker mapped the 8080 port inside of the container to the port 49160 on your machine.

Now you can call your app using curl (install if needed via: sudo apt-get install curl):

$ curl -i localhost:49160

HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: text/html; charset=utf-8
Content-Length: 12
Date: Sun, 02 Jun 2013 03:53:22 GMT
Connection: keep-alive

Hello world

We hope this tutorial helped you get up and running a simple Node.js application on Docker.

You can find more information about Docker and Node.js on Docker in the following places:

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,053评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,527评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,779评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,685评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,699评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,609评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,989评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,654评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,890评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,634评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,716评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,394评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,976评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,950评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,191评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,849评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,458评论 2 342

推荐阅读更多精彩内容