Docker Nginx container production and deployment implementation method

Docker Nginx container production and deployment implementation method

Quick Start

1. Find the nginx image on Docker Hub

docker search nginx

2. Pull the official Nginx image

docker pull nginx

3. Find the mirror with REPOSITORY as nginx in the local mirror list

docker images nginx

REPOSITORY TAG IMAGE ID CREATED SIZE
nginx latest 4bb46517cac3 4 weeks ago 133MB

4. The following command starts an Nginx container instance using the default configuration in the NGINX container:

Copy the code as follows:
docker run --rm --name nginx-test -p 8080:80 -d nginx

The meanings of the four command line parameters of this command are as follows.

  • --rm: Automatically delete container files after the container terminates.
  • --name nginx-test: The name of the container is nginx-test, and the name is defined by yourself.
  • -p: Map the port to map the local port 8080 to the port 80 inside the container
  • -d: After the container is started, run in the background
  • The nginx after the -d parameter is the name of the container image to be started.

5. View the started docker container

docker container ps

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
acb0e263dff3 nginx "/docker-entrypoint.…" 10 seconds ago Up 9 seconds 0.0.0.0:8080->80/tcp nginx-test

6. Access in the browser. I am using Tencent Cloud Host. Just access the public IP+port.

Open http://public network ip:8080 in the browser, the effect is as follows.

Deployment Service

1. Create a local directory to store Nginx related file information.

mkdir -p /home/nginx/www /home/nginx/logs /home/nginx/conf

in:

  • The www: directory will be mapped to the virtual directory configured in the nginx container.
  • logs: The directory will be mapped to the log directory of the nginx container.
  • The configuration files in the conf: directory will be mapped to the configuration files of the nginx container.

2. Copy the default Nginx configuration file in the container to the conf directory under the local current directory. The container ID can be viewed in the first column of the docker ps command input:

docker ps

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
acb0e263dff3 nginx "/docker-entrypoint.…" 10 seconds ago Up 9 seconds 0.0.0.0:8080->80/tcp nginx-test

docker cp acb0e263dff3:/etc/nginx /home/nginx/conf

3. Stop this container

docker container stop nginx-test

Note the command to enter the container: docker exec -it nginx-test /bin/bash

4. Deployment Commands

docker run --rm -d -p 8080:80 --name nginx-test-web \
-v /home/nginx/www:/usr/share/nginx/html \
-v /home/nginx/conf/nginx:/etc/nginx \
-v /home/nginx/logs:/var/log/nginx \
nginx

Command Explanation:

  • --rm: Automatically delete container files after the container terminates.
  • -p 8080:80: Map the container's port 80 to the host's port 8080.
  • --name nginx-test-web: Name the container nginx-test-web
  • -v /home/nginx/www:/usr/share/nginx/html: mount the www directory we created to the container’s /usr/share/nginx/html.
  • -v /home/nginx/conf/nginx:/etc/nginx: mount the nginx directory under conf that we created ourselves to the /etc/nginx of the container.
  • -v /home/nginx/logs:/var/log/nginx: mount the logs we created ourselves to the container's /var/log/nginx.

5. After launching the above command, enter the /home/nginx/www directory:

cd /home/nginx/www/
vi index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nginx test !!!</title>
</head>
<body>
<h1>My first title</h1>
<p>My first paragraph. </p>
</body>
</html>

6. Access in browser

Enter http://public network ip:8080/ in the browser, the output is as follows. If a 403 error appears during access, it should be that the index.html file has insufficient permissions. Just set it to 644.

Support HTTPS, HTTP2

1. Create a subdirectory certs in the directory /home/nginx/conf/nginx

mkidr certs

2. Generate a certificate

openssl req \
-x509 \
-nodes \
-days 365 \
-newkey rsa:2048 \
-keyout example.key \
-out example.crt

The meanings of the parameters in the above command are as follows.

  • req: Processes a certificate signing request.
  • -x509: Generate a self-signed certificate.
  • -nodes: Skip the stage of setting a password for the certificate so that Nginx can open the certificate directly.
  • -days 365: The certificate is valid for one year.
  • -newkey rsa:2048: Generates a new private key using the 2048-bit RSA algorithm.
  • -keyout: The newly generated private key file is example.key in the current directory.
  • -out: The newly generated certificate file is example.crt in the current directory.

If the directory is created successfully, two more files will be created: example.key and example.crt.

3.HTTPS configuration

Create the https.conf file in the /home/nginx/conf/nginx/conf.d directory and write the following:

server {
  listen 443 ssl http2;
  server_name localhost;

  ssl on;
  ssl_certificate /etc/nginx/certs/example.crt;
  ssl_certificate_key /etc/nginx/certs/example.key;

  ssl_session_timeout 5m;

  ssl_ciphers HIGH:!aNULL:!MD5;
  ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
  ssl_prefer_server_ciphers on;

  location / {
    root /usr/share/nginx/html;
    index index.html index.htm;
  }
}

4. Deployment Service

docker run --rm -d -p 8080:80 -p 8081:443 --name nginx-test-web \
-v /home/nginx/www:/usr/share/nginx/html \
-v /home/nginx/conf/nginx:/etc/nginx \
-v /home/nginx/logs:/var/log/nginx \
nginx

5. Quick Test

http://public network ip:8080/: access http
https://public network ip:8081/: access https

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Docker builds Nginx+PHP+MySQL environment and deploys WordPress practice
  • How to deploy nginx with Docker and modify the configuration file
  • Docker for Beginners and Detailed Steps for Deploying NGINX
  • Docker nginx example method to deploy multiple projects
  • Docker deployment nginx implementation process graphic and text detailed explanation
  • Docker deploys Nginx and configures reverse proxy
  • Try Docker+Nginx to deploy single page application method
  • How to deploy Nginx on Docker

<<:  How to get the maximum or minimum value of a row in sql

>>:  HTML table tag tutorial (12): border style attribute FRAME

Recommend

The difference between HTML name id and class_PowerNode Java Academy

name Specify a name for the tag. Format <input...

Detailed process of upgrading gcc (version 10.2.0) under CentOS7 environment

Table of contents Short Introduction 1. Check the...

Meta tags in simple terms

The META tag, commonly referred to as the tag, is...

Using JavaScript to implement carousel effects

This article shares the specific code for JavaScr...

React-Native environment setup and basic introduction

Environment Preparation 1. Environment Constructi...

Linux disk sequential writing and random writing methods

1. Introduction ● Random writing will cause the h...

The process of quickly converting mysql left join to inner join

During the daily optimization process, I found a ...

Solve the problem of using less in Vue

1. Install less dependency: npm install less less...

How to solve the phantom read problem in MySQL

Table of contents Preface 1. What is phantom read...

In-depth understanding of the matching logic of Server and Location in Nginx

Server matching logic When Nginx decides which se...

A brief discussion on MySQL temporary tables and derived tables

About derived tables When the main query contains...

JavaScript canvas realizes dynamic point and line effect

This article shares the specific code for JavaScr...

CSS Reset style reset implementation example

Introduction: All browsers come with default styl...