zoukankan      html  css  js  c++  java
  • CentOS Docker 环境中安装Nginx.

    1、首先查找nginx镜像

    [root@node1 ~]# docker search nginx

    2、拉取官网的nginx镜像

    [root@node1 ~]# docker pull nginx
    Using default tag: latest
    latest: Pulling from library/nginx
    2a72cbf407d6: Pull complete 
    fefa2faca81f: Pull complete 
    080aeede8114: Pull complete 
    Digest: sha256:c4ee0ecb376636258447e1d8effb56c09c75fe7acf756bf7c13efadf38aa0aca
    Status: Downloaded newer image for nginx:latest

    3、查看获取到的镜像文件

    [root@node1 ~]# docker images
    REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
    nginx               latest              7f70b30f2cc6        7 days ago          109MB
    ubuntu              14.04               a35e70164dfb        3 weeks ago         222MB
    ubuntu              17.10               1af812152d85        3 weeks ago         98.4MB

    4、启动nginx 容器

    [root@node1 ~]# docker run --name nginx -d -p 80:80 -v /usr/docker/nginx/html:/usr/share/nginx/html -v /etc/docker/nginx/conf.d:/etc/nginx/conf.d nginx
    759d6d37858bcc70867321759df12d2881e6399204f2ba6a4b8b10aaea430da3

    5、 启动后nginx 验证

  • 相关阅读:
    感知机学习笔记
    NOIP 模拟19
    NOIP 模拟17
    NOIP模拟14-16
    「动态规划」-数位dp专题
    8.5 NOIP 模拟测试 13
    8.3 NOIP 模拟12题解
    8.3 NOIP CE反思
    「分治」-cdq分治
    8.1 NOIP模拟11
  • 原文地址:https://www.cnblogs.com/cearnach/p/9491176.html
Copyright © 2011-2022 走看看