Methods and steps to build nginx file server based on docker

Methods and steps to build nginx file server based on docker

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:

  • D:\dev\nginx-1.13.6\conf\docker_nginx.con is the address of my local configuration file
  • /etc/nginx/nginx.conf is the configuration file address in docker nginx
  • D:\tools\files is the address of the local folder I want to share
  • /home/files is the address mapped in docker nginx

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:
  • Graphic tutorial on configuring nginx file server in windows 10 system
  • Nginx learning static file server configuration method
  • Detailed explanation of nginx configuration static file server
  • Detailed process of using nginx to build a webdav file server in Ubuntu

<<:  JavaScript canvas to achieve mirror image effect

>>:  Several ways to backup MySql database

Recommend

TimePicker in element disables part of the time (disabled to minutes)

The project requirements are: select date and tim...

Detailed explanation of Angular component projection

Table of contents Overview 1. Simple Example 1. U...

Design Theory: Textual Expression and Usability

<br />In text design, we usually focus on th...

960 Grid System Basic Principles and Usage

Of course, there are many people who hold the oppo...

Solve the problem of Navicat for Mysql connection error 1251 (connection failed)

Because what I wrote before was not detailed enou...

How to check where the metadata lock is blocked in MySQL

How to check where the metadata lock is blocked i...

Installation and configuration tutorial of MongoDB under Linux

MongoDB Installation Choose to install using Yum ...

Implementation of adding remark information to mysql

Preface Some people have asked me some MySQL note...

Detailed explanation of JavaScript array deduplication

Table of contents 1. Array deduplication 2. Dedup...

MySQL: Data Integrity

Data integrity is divided into: entity integrity,...

Using JS to implement a small game of aircraft war

This article example shares the specific code of ...

How to design and create adaptive web pages

With the popularization of 3G, more and more peop...

Detailed explanation of crontab scheduled execution command under Linux

In LINUX, periodic tasks are usually handled by t...