教程 - 部署基于 Docker 的服务

部署基于 Docker 的服务

在本教程中,您将创建自定义 Docker 镜像,并将其部署到 DC/OS。

前提条件

创建自定义 Docker 镜像

  1. 创建名为 的文件。index.html. 将以下标记粘贴到 index.html 并保存:

    <html>
        <body>
        <h1> Hello brave new world! </h1>
        </body>
    </html>
    
  2. 创建名为 的文件。Dockerfile. 将以下 Docker 命令粘贴到其中,并保存:

    FROM nginx:1.9
    COPY index.html /usr/share/nginx/html/index.html
    
  3. 构建 Docker 镜像,其中 <username> 是您的 Docker Hub 用户名:

    docker build -t <username>/simple-docker .
    

    输出应类似于:

    Sending build context to Docker daemon 3.072 kB
    Step 1 : FROM nginx:1.9
    1.9: Pulling from library/nginx
    51f5c6a04d83: Pull complete
    a3ed95caeb02: Pull complete
    640c8f3d0eb2: Pull complete
    a4335300aa89: Pull complete
    Digest: sha256:54313b5c376892d55205f13d620bc3dcccc8e70e596d083953f95e94f071f6db
    Status: Downloaded newer image for nginx:1.9
     ---> c8c29d842c09
    Step 2 : COPY index.html /usr/share/nginx/html/index.html
     ---> 61373621782c
    Removing intermediate container 225910aa385d
    Successfully built 61373621782c
    
  4. 登录到 Docker Hub:

    docker login
    
  5. 将镜像推送到 Docker Hub,其中 <username> 是您的 Docker Hub 用户名:

    docker push <username>/simple-docker
    

    输出应类似于:

    The push refers to a repository [docker.io/<username>/simple-docker]
    6e2a0db36f4c: Pushed
    5f70bf18a086: Mounted from library/nginx
    49027b789c92: Mounted from library/nginx
    20f8e7504ae5: Mounted from library/nginx
    4dcab49015d4: Mounted from library/nginx
    latest: digest: sha256:f733e23e1f5e83a29a223d0a7d30244b30c0d57d17aa0421d962019545d69c17 size: 2185
    

创建 Docker 应用程序并部署到 DC/OS

  1. 使用以下内容创建 Marathon 应用定义,并另存为 hello-nginx.json. 在 image 字段中,将 <username> 替换为您的 Docker Hub 用户名。在 type 字段中,根据您偏好的[容器化工具运行时]MESOS 指定 DOCKER 或 (/mesosphere/dcos/cn/2.1/deploying-services/containerizers/) 此文件指定了一个名为 hello-nginx 的简单 Marathon 应用程序,该应用程序在公共节点上运行自身的一个实例。

    {
      "id": "hello-nginx",
      "container": {
        "type": "[MESOS | DOCKER]",
        "docker": {
          "image": "<username>/simple-docker"
        },
        "portMappings": [
          { "hostPort": 80, "containerPort": 80, "protocol": "tcp" }
        ]
      },
      "networks": [
        {
          "mode": "container/bridge"
        }
      ],
      "acceptedResourceRoles": ["slave_public"],
      "instances": 1,
      "cpus": 0.1,
      "mem": 64
    }
    
  1. 使用 DC/OS 命令将 hello-nginx 应用程序添加到 Marathon:

    dcos marathon app add hello-nginx.json
    

    如果添加成功,则没有输出。

  2. 如果您选择了 MESOS 运行时间,在您确认添加了该应用程序时,您将看到以下内容:

    dcos marathon app list
    ID            MEM  CPUS  TASKS  HEALTH  DEPLOYMENT  WAITING  CONTAINER  CMD
    /hello-nginx   64  0.1    1/1    N/A       ---      False      MESOS    N/A
    
  3. 如果您使用 AWS CloudFormation 模板 将应用程序公开到应用程序定义中指定的端口(例如,端口 80),则必须在公共 ELB 上重新配置运行状况检查。

    1. 在 CloudFormation 中,勾选堆栈旁边的复选框。
    2. 单击 Resources 选项卡。
    3. 搜索 PublicSlavEloadBalancer
    4. 单击 Physical ID(物理 ID)列中的链接。
    5. 按照 更新运行状况检查配置中的说明进行操作。
  4. 转到公共代理节点,查看网站是否正在运行。若要查找公共代理 IP 地址,请参阅查找公共代理 IP.

    您应在浏览器中看到以下消息:

    Hello Brave World

    图 1. Hello World 消息

了解更多

了解如何使用 [Marathon-LB] 在公共节点上对应用程序进行负载均衡。(/mesosphere/dcos/cn/services/marathon-lb/latest/mlb-basic-tutorial/).