Detailed explanation of docker nginx container startup and mounting to local

Detailed explanation of docker nginx container startup and mounting to local

First, the structure inside the nginx container:

Enter the container:

docker exec -it b511b6049f57 bash

View the container structure directory: In fact, each container is equivalent to an independent system.

root@b511b6049f57:/# ls
bin dev home lib64 mnt proc run srv tmp var
boot etc lib media opt root sbin sys usr

The structure directory of nginx is in the container:

  • Log location: /var/log/nginx/
  • Configuration file location: /etc/nginx/
  • Project location: /usr/share/nginx/html

If you want to add a location locally, you need to mount the configurations in these containers locally:

The configuration file is relatively troublesome. Generally, nginx only needs to load nginx.conf. In dokcer, nginx.conf is loaded first, and then there is a line in nginx.conf including include /etc/nginx/conf.d/*.conf;, which loads the configuration file in the conf.d directory. So for the configuration, you only need to mount it to conf.d and overwrite it.

Create the corresponding folder and main configuration file nginx.conf locally:

mkdir -p /home/test/nginx/{log,conf,html}
touch nginx.conf

nginx.conf contains sub-configuration files (last line):

user nginx;

worker_processes 1;

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


events {
  worker_connections 1024;
}


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

  log_format main '"$remote_addr" "$http_host" "[$time_local]" "$request" "$status" "$body_bytes_sent" '
          '"$bytes_sent" "$gzip_ratio" "$http_referer" "$http_user_agent" "$http_x_forwarded_for" '
          '"$upstream_addr" "$upstream_response_time" "$request_time" "$request_body" "$http_authorization" ';
  access_log /var/log/nginx/access.log main;

  sendfile on;
  #tcp_nopush on;

  keepalive_timeout 65;

  #gzip on;

  include /etc/nginx/conf.d/*.conf;
}

Create a default.conf under 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/share/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 502 503 504 /50x.html;
  location = /50x.html {
    root /usr/share/nginx/html;
  }

  location ~ /images {
    default_type application/json;
    return 200 '{"code": "A000000", "message": "ok", "timestamp": "20180307184426", "data": {"isvip": "1", "monthProList": []}}';
  }

  # 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;
  #}
}

After preparing the above local files, start the container and mount it to the local related configuration files:

docker run --name docker_nginx -d -p 80:80 \
-v /home/test/nginx/log:/var/log/nginx \
-v /home/test/nginx/conf:/etc/nginx/conf.d \
-v /home/test/nginx/nginx.conf:/etc/nginx/nginx.conf \
-v /home/test/nginx/html:/usr/share/nginx/html nginx

###
  The first -v: mount the log directory The second -v: mount the configuration directory The third -v: mount the main configuration file The fourth -v: mount the project directory

After the mounting is complete, visit the main page:

Then access the location /images we wrote in default before:


Restart nginx:

docker exec -it b511b6049f57 nginx -s reload

This is the end of this article about starting and mounting the docker nginx container locally. For more relevant docker nginx startup and mounting content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementation of mounting NFS shared directory in Docker container
  • Docker - Summary of 3 ways to modify container mount directories
  • Docker mounts local directories and data volume container operations
  • Solve the problem of docker log mounting
  • Docker starts the elasticsearch image and solves the error after mounting the directory
  • Steps to set up and mount shared folders on Windows host and Docker container
  • Docker deploys nginx and mounts folders and file operations
  • Solve the problem of failure to mount files or directories using ./ relative path in docker run

<<:  A brief introduction to MySQL storage engine

>>:  JavaScript implements the most complete code analysis of a simple magnifying glass (ES5)

Recommend

Detailed explanation of the abbreviation of state in react

Preface What is state We all say that React is a ...

Gitlab practical tutorial uses git config for related configuration operations

This article introduces the content related to gi...

How to set up cross-domain access in IIS web.config

Requirement: The page needs to display an image, ...

Understanding Vuex in one article

Table of contents Overview Vuex four major object...

Vue implements verification whether the username is available

This article example shares the specific code of ...

MySQL database SELECT query expression analysis

A large part of data management is searching, and...

Detailed explanation of the JavaScript timer principle

Table of contents 1. setTimeout() timer 2. Stop t...

How to install Docker on Raspberry Pi

Because the Raspberry Pi is based on ARM architec...

Tutorial on using iostat command in Linux

Preface It is said that if the people doing opera...

Mysql 5.6.37 winx64 installation dual version mysql notes

If MySQL version 5.0 already exists on the machin...

How to build svn server in linux

1: Install SVN yum install -y subversion 2. Creat...

HTML 5 Preview

<br />Original: http://www.alistapart.com/ar...