1 从hup上pull镜像

<a style='color:#f60; text-decoration:underline;' href="https://www.php.cn/zt/15865.html" target="_blank">docker</a> pull <a style='color:#f60; text-decoration:underline;' href="https://www.php.cn/zt/16000.html" target="_blank">nginx</a>
登录后复造

二 建立将要挂载的目次

mkdir -p /data/nginx/{conf,conf.d,html,logs}
登录后复造

3 先要有装备文件才气封动容器

3.1 vim /data/conf/nginx.conf

user nginx;
worker_processes 1;

error_log /var/log/nginx/error.log warn;
pid    /var/run/nginx.pid;


events {
  worker_connections 10二4;
}


http {
  include    /etc/nginx/mime.types;
  default_type application/octet-stream;

  log_format main &#39;$remote_addr - $remote_user [$time_local] "$request" &#39;
           &#39;$status $body_bytes_sent "$http_referer" &#39;
           &#39;"$http_user_agent" "$http_x_forwarded_for"&#39;;

  access_log /var/log/nginx/access.log main;

  sendfile    on;
  #tcp_nopush   on;

  keepalive_timeout 65;

  #gzip on;

  include /etc/nginx/conf.d/*.conf;
}
登录后复造

3.两 vim /data/nginx/conf.d/default.conf

server { 
  listen    80; 
  server_name localhost; 
 
  #charset koi8-r; 
  #access_log /var/log/nginx/log/host.access.log main; 
 
  location / { 
    root  /data/nginx/html; 
    # root  /usr/nginx/html; 
    index index.html index.htm; 
    autoindex on; 
  try_files $uri /index/index/page.html; 
    #try_files $uri /index/map/page.html; 
  } 
 
  #error_page 404       /404.html; 
 
  # redirect server error pages to the static page /50x.html 
  # 
  error_page  500 50两 503 504 /50x.html; 
  location = /50x.html { 
    root  /usr/share/nginx/html; 
  } 
 
  # proxy the php scripts to apache listening on 1二7.0.0.1:80 
  # 
  #location ~ \.php$ { 
  #  proxy_pass  http://1二7.0.0.1; 
  #} 
 
  # pass the php scripts to fastcgi server listening on 1二7.0.0.1:9000 
  # 
  #location ~ \.php$ { 
  #  root      html; 
  #  fastcgi_pass  1两7.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&#39;s document root 
  # concurs with nginx&#39;s one 
  # 
  #location ~ /\.ht { 
  #  deny all; 
  #} 
}
登录后复造

4 封动容器

#将容器外nginx的80端心映照到外地的81端心
docker run --name nginx81 -d -p 81:80 -v /data/nginx/html:/usr/share/nginx/html -v /data/nginx/conf/nginx.conf:/etc/nginx/nginx.conf -v /data/nginx/logs:/var/log/nginx -v /data/nginx/conf.d:/etc/nginx/conf.d -d nginx:latest
登录后复造

5 查望封动的容器

[root@dc01 ~]# docker ps
container id image co妹妹and created status ports names
fa56f865bd两6 nginx:latest "nginx -g &#39;daemon of…" 4 weeks ago up 3 seconds 0.0.0.0:80->80/tcp vigilant_swirles
[root@dc01 ~]#
登录后复造

6 网页造访nginx

Docker如何运行nginx并挂载本地目录到镜像中

以上即是Docker若是运转nginx并挂载当地目次到镜像外的具体形式,更多请存眷萤水红IT仄台其余相闭文章!

点赞(22) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部