1.查找nginx镜像

docker search nginx

2.拉取官方nginx镜像

默认拉取最新的

docker pull nginx

3.查看镜像列表

查看本地已下载镜像

docker images

4.配置

1. 创建挂载目录

mkdir -p /usr/local/nginx/conf
mkdir -p /usr/local/nginx/logs
mkdir -p /usr/local/nginx/html

2. 创建配置文件

在刚创建nginx中的conf文件夹下新建nginx.conf文件

touch nginx.conf

编辑nginx.conf文件

vim nginx.conf

将以下内容填到nginx.conf文件中

#设置nginx服务的系统使用用户
user  nginx; 
 #工作进程数
worker_processes  1;

#nginx的错误日志
error_log  /var/log/nginx/error.log warn; 
#nginx启动时候的pid
pid        /var/run/nginx.pid; 

#每个进程允许的最大连接数
events {
    worker_connections  1024; 
}

#http请求配置,一个http可以包含多个server
http { 

    #定义 Content-Type
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    #日志格式 此处main与access_log中的main对应
    #$remote_addr:客户端地址
    #$remote_user:http客户端请求nginx认证的用户名,默认不开启认证模块,不会记录
    #$timelocal:nginx的时间
    #$request:请求method + 路由 + http协议版本
    #status:http reponse 状态码
    #body_bytes_sent:response body的大小
    #$http_referer:referer头信息参数,表示上级页面
    #$http_user_agent:user-agent头信息参数,客户端信息
    #$http_x_forwarded_for:x-forwarded-for头信息参数
    log_format  main  '$http_user_agent' '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    #访问日志,后面的main表示使用log_format中的main格式记录到access.log中
    access_log  /var/log/nginx/access.log  main;

    #nginx的一大优势,高效率文件传输
    sendfile        on;
    #tcp_nopush     on;

    #客户端与服务端的超时时间,单位秒
    keepalive_timeout  65;

    #gzip  on;
    server { 
        #http服务,一个server可以配置多个location
        listen       80; #服务监听端口
        server_name  localhost; #主机名、域名
    
        #charset koi8-r;
        #access_log  /var/log/nginx/host.access.log  main;
    
        location / {
            root   /usr/share/nginx/html; #页面存放目录
            index  index.html index.htm; #默认页面
        }
    
        #error_page  404              /404.html;
    
        # 将500 502 503 504的错误页面重定向到 /50x.html
        error_page   500 502 503 504  /50x.html;
        location = /50x.html { #匹配error_page指定的页面路径
            root   /usr/share/nginx/html; #页面存放的目录
        }
    
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}
    
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}
    
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
    include /etc/nginx/conf.d/*.conf;
}

5.启动容器

1. 启动命令

docker run -d -p 80:80 -p 443:443 \
--name nginx \
--privileged=true \
-v /usr/local/nginx/conf/nginx.conf:/etc/nginx/nginx.conf \
-v /usr/local/nginx/html:/etc/nginx/html \
-v /usr/local/nginx/logs:/var/log/nginx \
-d nginx

2. 启动命令分解

  • --name:为容器指定一个名字

  • -p:指定端口映射,格式为:主机(宿主)端口:容器端口

  • -v:绑定挂载,主机<host-path>:容器<container-path>

    host-path上述创建的nginx文件,
    container-path为容器默认配置位置,首先,通过运行容器进入到镜像的 shell 环境中。可以使用以下命令启动一个容器,并进入其 shell:

    docker run -it nginx /bin/bash
    

    在大多数情况下,Nginx 的配置文件位于 /etc/nginx 目录下。

  • -d:后台运行容器,并返回容器 id

3. 自启动

docker update nginx --restart=always 或者 docker update --restart=always <容器名称/ID>

4. 启动、停止、重启

docker start nginx
docker stop  nginx
docker restart nginx

5. 访问测试

打开浏览器访问页面:https://ip地址:80