Table of Contents
The purpose of the plug-in file:
There are two ways to run a container:
Assume that the image packaging path structure is as follows:
Compile a new image through the following command:
docker run mode
docker-compose mode
Home Operation and Maintenance Nginx What is the method to install nginx plug-in files under Docker?

What is the method to install nginx plug-in files under Docker?

May 13, 2023 pm 03:04 PM
docker nginx

The purpose of the plug-in file:

  • The file is not bound by the docker image file. It can be modified, the container can be restarted, and the updated file can be used. It will not be restored by the image

  • Files such as logs and other information recorded during the running of the container can be automatically saved on external storage and will not be lost due to restarting the container

There are two ways to run a container:

  • docker run command

  • docker-compose command

The docker run command method uses the -v parameter to mount the external host directory to the path within the container. If there are multiple mount points, specify them through multiple -v parameters, and only absolute paths can be used; the docker-compose command uses The service method is easy to describe. To be precise, a service can contain multiple containers, and the mounting configuration of the external path is also configured through the -v parameter. The advantage is that you can use a relative path, which is of course relative to the path of the docker-compose.yml file. . Another advantage is that the command to start the container with docker-compose is relatively simple.

Assume that the image packaging path structure is as follows:

├── build.sh
├── docker-compose.yml
├── Dockerfile
├── mynginx.conf
├── nginx-vol
│   ├── conf.d
│   │   └── mynginx.conf
│   ├── html
│   │   └── index.html
│   └── logs
│       ├── access.log
│       └── error.log
└── run.sh
Copy after login

Dockerfile is the configuration file for building the image, and the content is as follows:

FROM nginx
LABEL maintainer="xxx" email="<xxx@xxx.com>" app="nginx test" version="v1.0"
ENV WEBDIR="/data/web/html"
RUN mkdir -p ${WEBDIR}
EXPOSE 5180
Copy after login

Based on nginx, specify the new data file path as /data/web/html, the exposed port is 5180.

Compile a new image through the following command:

docker build -t nginx:test-v1 .
Copy after login

The compiled image tag is test-v1, you can view the local image:

docker images
REPOSITORY   TAG       IMAGE ID       CREATED          SIZE
nginx        test-v1   d2a0eaea3fac   56 minutes ago   141MB
nginx        latest    605c77e624dd   9 days ago       141MB
Copy after login

You can see that the TAG is test- The v1 image is a new image that has just been compiled.

Create nginx external volume nginx-vol and related conf.d, logs, html folders, and put the corresponding contents into their corresponding directories. For example, the content of iindex.html in the html folder is as follows:

<html>
        <head>
                <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
                <title>系统时间</title>
        <body>
                <div id="datetime">
                        <script>
                                setInterval("document.getElementById(&#39;datetime&#39;).innerHTML=new Date().toLocaleString();",1000);
                        </script>
                </div>
        </body>
        </head>
</html>
Copy after login

is actually just a page that displays the current time.

The logs section is empty. The purpose is to write the logs when the container is running to external storage. Even if the container is stopped or the image is destroyed, the running logs can still be retained.

conf.d below is nginx personalized configuration, the content is as follows:

server {
    listen       5180;
    #listen  [::]:5180;
    server_name  localhost;

    #access_log  /var/log/nginx/host.access.log  main;
    location / {
        root   /data/web/html;
        index  index.html index.htm;
    }
    #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;
    # 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
    #    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&#39;s document root
    # concurs with nginx&#39;s one
    #location ~ /\.ht {
    #    deny  all;
}
Copy after login

In fact, the port and root path are modified based on nginx's default default.conf, the purpose is to illustrate nginx The configuration file can also be stored externally. If your own program can modify the configuration file, then in this way, the configuration file can be modified while the container is running; the modified configuration file is actually stored on the external storage, so it will not change anytime. It disappears when the container stops running, and will not be restored to the files inside the image.

docker run mode

For convenience, you can write the running command into a shell script, such as run.sh, the content is as follows:

docker run --name nginx-v1 -p 15180:5180 -v /home/project/nginx-test/nginx-vol/logs:/var/log/nginx -v /home/project/nginx-test/nginx-vol/conf.d:/etc/nginx/conf.d -v /home/project/nginx-test/nginx-vol/html:/data/web/html -d nginx:test-v1
Copy after login

You can see that there are 3 in the command Each -v corresponds to different external storage mounts and is mapped to different directories in the container. The ports after

-p (note that it is lowercase) are the host port and the container port respectively, that is, the host's 15180 port is mapped to the container's 5180 port, so that the nginx service port 5180 started by the container can be accessed through The host's port 15180 is mapped.

View running containers:

docker ps -a
CONTAINER ID   IMAGE           COMMAND                  CREATED         STATUS         PORTS                                                 NAMES
cf2275da5130   nginx:test-v1   "/docker-entrypoint.…"   6 seconds ago   Up 5 seconds   80/tcp, 0.0.0.0:15180->5180/tcp, :::15180->5180/tcp   nginx-v1
Copy after login

Detailed mapping view:

docker inspect nginx-v1
Copy after login

Complete information will be displayed, in which the complete storage mount mapping can be seen in the "Mounts" section Condition.

Look directly under nginx-vol/logs on the host. You can see that the nginx running log in the container is automatically written to the storage of the external host.

ls -l nginx-vol/logs/
total 12
-rw-r--r-- 1 root root 1397 1月   8 15:08 access.log
-rw-r--r-- 1 root root 4255 1月   8 15:59 error.log
Copy after login

Stop container:

docker stop nginx-v1
Copy after login

Delete container:

docker rm nginx-v1
Copy after login

docker-compose mode

Install docker-compose

apt-get install docker-compose	
Copy after login

Write docker -compose.yml file

version: "3"
services:
        nginx:
                container_name: mynginx
                image: nginx:test-v1
                ports:
                        - 80:5180
                volumes:
                        - ./nginx-vol/html:/data/web/html
                        - ./nginx-vol/logs:/var/log/nginx
                        - ./nginx-vol/conf.d:/etc/nginx/conf.d
                restart: always
Copy after login

container_name: Specify the container name

image: The image to be used and the corresponding label

ports: Host port and container port mapping

volumes: External storage mount mapping

Start the container

docker-compose up -d
Creating network "nginxtest_default" with the default driver
Creating mynginx ...
Creating mynginx ... done
Copy after login

View the container

docker ps -a
CONTAINER ID   IMAGE           COMMAND                  CREATED          STATUS          PORTS                                           NAMES
635e2999c825   nginx:test-v1   "/docker-entrypoint.…"   24 seconds ago   Up 22 seconds   80/tcp, 0.0.0.0:80->5180/tcp, :::80->5180/tcp   mynginx
Copy after login

You can see that the container is running according to the docker-compose.yml configuration, port, name , mounting are all normal. Accessing port 80 of the host corresponds to the container's 5180 service.

Stop the container

docker-compose down
Stopping mynginx ... done
Removing mynginx ... done
Removing network nginxtest_default
Copy after login

As you can see, it is simpler to use docker-compose.

The above is the detailed content of What is the method to install nginx plug-in files under Docker?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to exit the container by docker How to exit the container by docker Apr 15, 2025 pm 12:15 PM

Four ways to exit Docker container: Use Ctrl D in the container terminal Enter exit command in the container terminal Use docker stop &lt;container_name&gt; Command Use docker kill &lt;container_name&gt; command in the host terminal (force exit)

How to copy files in docker to outside How to copy files in docker to outside Apr 15, 2025 pm 12:12 PM

Methods for copying files to external hosts in Docker: Use the docker cp command: Execute docker cp [Options] &lt;Container Path&gt; &lt;Host Path&gt;. Using data volumes: Create a directory on the host, and use the -v parameter to mount the directory into the container when creating the container to achieve bidirectional file synchronization.

How to check the name of the docker container How to check the name of the docker container Apr 15, 2025 pm 12:21 PM

You can query the Docker container name by following the steps: List all containers (docker ps). Filter the container list (using the grep command). Gets the container name (located in the "NAMES" column).

How to restart docker How to restart docker Apr 15, 2025 pm 12:06 PM

How to restart the Docker container: get the container ID (docker ps); stop the container (docker stop &lt;container_id&gt;); start the container (docker start &lt;container_id&gt;); verify that the restart is successful (docker ps). Other methods: Docker Compose (docker-compose restart) or Docker API (see Docker documentation).

How to start mysql by docker How to start mysql by docker Apr 15, 2025 pm 12:09 PM

The process of starting MySQL in Docker consists of the following steps: Pull the MySQL image to create and start the container, set the root user password, and map the port verification connection Create the database and the user grants all permissions to the database

How to update the image of docker How to update the image of docker Apr 15, 2025 pm 12:03 PM

The steps to update a Docker image are as follows: Pull the latest image tag New image Delete the old image for a specific tag (optional) Restart the container (if needed)

How to create containers for docker How to create containers for docker Apr 15, 2025 pm 12:18 PM

Create a container in Docker: 1. Pull the image: docker pull [mirror name] 2. Create a container: docker run [Options] [mirror name] [Command] 3. Start the container: docker start [Container name]

How to start containers by docker How to start containers by docker Apr 15, 2025 pm 12:27 PM

Docker container startup steps: Pull the container image: Run "docker pull [mirror name]". Create a container: Use "docker create [options] [mirror name] [commands and parameters]". Start the container: Execute "docker start [Container name or ID]". Check container status: Verify that the container is running with "docker ps".

See all articles