Solution to the problem that docker nginx cannot be accessed after running

Solution to the problem that docker nginx cannot be accessed after running

## 1

I'm learning docker deployment recently, and I initially planned to dockerize nginx.

Refer to the official Docker image description for custom configuration

After copying the official nginx.conf, I modified and added some customizations, mainly blocking the default.conf and the include folder sites-available

# include /etc/nginx/conf.d/.conf;
include /etc/nginx/sites-available/;

Official original configuration

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 - $remote_user [$time_local] "$request" '
           '$status $body_bytes_sent "$http_referer" '
           '"$http_user_agent" "$http_x_forwarded_for"';

  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 new docker-compose.yml file and simply specify images, names, ports, and mount local files instead of defaults.

version: '3'
services:
 nginx-proxy:
  image: nginx
  container_name: nginx
  ports:
   -8081:80
  volumes:
   - ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro

## 2

After running docker-compose up, it keeps getting stuck at attaching to nginx, and the browser cannot access the port address

Starting nginx ... done
Attaching to nginx

I don't know where the problem is. After searching for information, I found that I can use the tty parameter for debugging.

Modify docker-compose.yml and add a configuration tty:true.

docker exec -it nginx /bin/bash

I found that after I deleted the default default.conf and did not add any other configuration files, the previous sites-available folder was empty.

## 3

I dug myself up, add

-./nginx/sites-available:/etc/nginx/sites-available:ro

And add a configuration file in sites-available.

/etc/nginx/sites-available# ls
default.conf

After running, access to the port address is finally normal

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:
  • Detailed graphic tutorial on how to enable remote secure access with Docker
  • Solution to the problem of not being able to access the home page when adding a tomcat container to Docker
  • How to directly access the docker for windows container intranet through an independent IP
  • A troubleshooting experience of centos Docker bridge mode unable to access the host Redis service
  • Detailed explanation of using Docker to build externally accessible MySQL
  • Detailed explanation of how to solve the problem that the docker container cannot access the host machine through IP
  • How to access the local machine (host machine) in Docker
  • How to use Docker container to access host network
  • Method for accessing independent IP in Docker container
  • Three ways to communicate between Docker containers

<<:  How to create a child process in nodejs

>>:  Linux platform mysql enable remote login

Recommend

How to reset Zabbix password (one-step)

Problem Description Since we don't log in to ...

Alibaba Cloud domain name and IP binding steps and methods

1 Enter the Alibaba Cloud console, find the domai...

Detailed explanation of the spacing problem between img tags

IMG tag basic analysis In HTML5, the img tag has ...

How to use Vue-router routing

Table of contents 1. Description 2. Installation ...

Vite2.0 Pitfalls

Table of contents Vite project build optimization...

Detailed graphic tutorial on installing centos7 virtual machine in Virtualbox

1. Download centos7 Download address: https://mir...

Three BOM objects in JavaScript

Table of contents 1. Location Object 1. URL 2. Pr...

Best tools for taking screenshots and editing them in Linux

When I switched my primary operating system from ...

JavaScript web form function communication full of practical information

1. Introduction Earlier we talked about the front...

js to write the carousel effect

This article shares the specific code of js to ac...

Mysql optimization techniques for querying dates based on time

For example, to query yesterday's newly regis...

Analysis of JavaScript's event loop mechanism

Table of contents Preface: 1. Reasons for the eve...

Use of filter() array filter in JS

Table of contents 1. Introduction 2. Introduction...

Add ?v= version number after js or css to prevent browser caching

Copy code The code is as follows: <span style=...

Summary of H5 wake-up APP implementation methods and points for attention

Table of contents Preface Jump to APP method URL ...