1. Create a new configuration file docker_nginx.conf on this machine server { listen 7070; server_name localhost; charset utf-8; location /files { #In docker, nginx's directory alias /home/files; expires 1d; allow all; autoindex on; } 2. Start the command docker run --name nginx -d -p 7070:7070 -v D:\dev\nginx-1.13.6\conf\docker_nginx.conf:/etc/nginx/nginx.conf -v D:\tools\files:/home/files nginx illustrate:
3. Results Visit localhost:7070/files to see the final mapped files. Execute the command docker exec -it nginx bash to enter docker nginx. The result is as follows λ docker exec -it nginx bash root@178a892f73ce:/# ls bin boot dev etc home lib lib64 media mnt opt proc root run sbin srv sys tmp usr var root@178a892f73ce:/# cd home/ root@178a892f73ce:/home# ls files root@178a892f73ce:/home# cd files/ root@178a892f73ce:/home/files# ls 2018-08-09 2018-08-13 2018-09-04 root@178a892f73ce:/home/files# exit exit The above is the detailed content of the method and steps for building an nginx file server based on docker. For more information about building an nginx file server with docker, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: JavaScript canvas to achieve mirror image effect
>>: Several ways to backup MySql database
The project requirements are: select date and tim...
Table of contents Overview 1. Simple Example 1. U...
<br />In text design, we usually focus on th...
Of course, there are many people who hold the oppo...
Because what I wrote before was not detailed enou...
How to check where the metadata lock is blocked i...
Find the installation directory of VirtualBox. Th...
MongoDB Installation Choose to install using Yum ...
Preface Some people have asked me some MySQL note...
1. Vulnerability Description On May 15, 2019, Mic...
Table of contents 1. Array deduplication 2. Dedup...
Data integrity is divided into: entity integrity,...
This article example shares the specific code of ...
With the popularization of 3G, more and more peop...
In LINUX, periodic tasks are usually handled by t...