zoukankan      html  css  js  c++  java
  • [Docker] Build a Simple Node.js Web Server with Docker

    Learn how to build a simple Node.js web server with Docker. In this lesson, we'll create a Dockerfile for a simple Node.js script, copy and build it into a Docker image, and start a container to run the web server.

    We have a simple express server:

    // Load the http module to create an http server.
    var http = require('http');
    
    // Configure our HTTP server to respond with Hello World to all requests.
    var server = http.createServer(function (request, response) {
      response.writeHead(200, {"Content-Type": "text/plain"});
      response.end("Hello World
    ");
    });
    
    // Listen on port 8000, IP defaults to 127.0.0.1
    server.listen(8000);
    
    // Put a friendly message on the terminal
    console.log("Server running at http://127.0.0.1:8000/");

    Create a DockerFile:

    A Docker file is a text document which provides the Docker engine with instructions on how to build the image. Every Docker file starts with the "from" keyword, followed by the name of our base image.  A base image is another Docker image from which we'll build our image. Since we're running a Node web server, we'll use the mhart/alpine-node image as our base.

    FROM mhart/alpine-node

    Then we say "copy" our main enter file to our image:

    COPY index.js .

    By default, you can think of Docker as having a firewall with no ports opened. Since we're running a web server, we'll need to open up the port the server is running on.

    Let's add "expose 8000" to our Docker file. 

    EXPOSE 8000

    The last line in every Docker file is typically the "cmd" or "command" keyword, followed by our executable. We'll use a simple command to start our web server, "Node index.js." This is now a valid Docker file.

    CMD node index.js

    Full:

    FROM mhart/alpine-node
    COPY index.js .
    EXPOSE 8000
    CMD node index.js

    Next, we'll use it to build our Docker image. From our project directory, run "Docker build -t myserver."

    docker build -t myserver .

    -t: to name our docker image.

    .: to tell which dir to look

    After executing it, you can verify the image was built by running:

    docker images

    We can test it by running "Docker run." We'll also specify a "-p" flag, which maps a host port to a container port.

    You can think of this as port forwarding through a firewall. Let's map port 8000 on our host to port 8000 on our container. Lastly, we'll add the name of our Docker image we specified when we built our image, "myserver."

    docker run -p 8000:8000 myserver

    Github

  • 相关阅读:
    如何使用jackson美化输出json/xml
    使用Jackson在Java中处理JSON
    用 Jackson 来处理 JSON
    writeValueAsString封装成工具类
    周鸿袆:360回归是出于国家安全考虑(硬件有硬件独特的规律,硬件不可能有很高的利润,核心的价值还是硬件背后承载的软件和云端的服务)
    Unicode 7.0.1中文支持非常好
    六个编程范型将改变你对编程的看法(好多奇怪的语言和奇怪的想法)
    delphi多版本安装方法
    UAC就不能一次添加、永久信任吗?
    数学符号及读法大全
  • 原文地址:https://www.cnblogs.com/Answer1215/p/6067279.html
Copyright © 2011-2022 走看看