docker-composer quickly builds nginx+php environment
This article is provided by the tutorial column of composer to introduce how to use docker-composer to build a simple nginx php environment. I hope it will be helpful to friends in need!
Directory structure
➜ Study tree ├── conf ├── docker-compose.yaml ├── nginx │ ├── conf │ │ └── laravel.conf │ └── html │ └── index.php
index.php
<?php /** * Created by OrangBus * User email: orangbus40400@gmail.com * website: orangbus.cn * blog: doc.orangbus.cn * github: github.com/orangbus */echo phpinfo();
nginx.conf
server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm index.php; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ { fastcgi_pass php8:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /html$fastcgi_script_name; include fastcgi_params; }}
Important note
fastcgi_pass php8:9000;
php8: The name of the php container. If you want to configure multiple php versions, you only need to copy the php configuration and fill in the corresponding php Container name
php8: # php的容器名称 image: php:8.0-fpm restart: always volumes: - ./nginx/html:/html-------------------------------- php74: # 对应的nginx配置文件为:fastcgi_pass php74:9000; image: php:8.0-fpm restart: always volumes: - ./nginx/html:/html
fastcgi_param SCRIPT_FILENAME /html$fastcgi_script_name;
/html: PHP project is mapped to [php container directory] (red)
docker-compose
version: '3.5'services: nginx: image: nginx:latest restart: always ports: - 8010:80 volumes: - ./nginx/html/:/usr/share/nginx/html # 注意点一 - ./nginx/conf/:/etc/nginx/conf.d/ links: - php8 php8: image: php:8.0-fpm restart: always volumes: - ./nginx/html:/html #注意点二
Note 1:
./nginx/html: Your php project address on this machine
/usr/share/nginx/html: nginx default access address
Note two:
./nginx/html: Your php project address on this machine
/html: The address here is to map your local php code to the php container. It is usually the same as the address configured by your nginx (red)
Tip: Please pay attention to two things The association of the red area, such a simple nginx php association environment has been configured successfully.
Pitfall guide:
When using -link
, the custom port connecting to the container will be invalid, for example
version: '3.5'services: php8: image: php:8.0-fpm restart: always volumes: - ./nginx/html:/html links: # 如果使用 links ,当我们php程序中填写mysql端口的时候应该是 3306 而不是 3307,但是我们外部是需要用3307端口去连接mysql的 - mysql mysql: image: mysql:latest ports: - 3307:3306
The above is the detailed content of docker-composer quickly builds nginx+php environment. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This article details how to create a center line in QGIS Composer. It lacks a dedicated tool; users manually draw a line using the line tool, precisely positioning it using handles and composer tools. Styling options are then available to customize

This article explains Composer, a PHP dependency manager. It details its features (dependency management, autoloading, version control), benefits (simplified development, improved consistency), and use cases (web apps, libraries, APIs). Composer us

This guide details applying decals in SOLIDWORKS Composer assemblies. It covers applying decals to single parts and mapping a single image across multiple parts, addressing compatible file formats (JPG, PNG, BMP, TIFF) and transparency limitations.

This article explains Composer, PHP's dependency manager. It details how Composer uses composer.json to install, update, and manage project dependencies from Packagist, ensuring consistent library versions across environments. Composer's framework-

This guide details how to launch SOLIDWORKS Composer 2016, primarily via the SOLIDWORKS Start menu or the Windows Start Menu. Troubleshooting steps for installation and launch issues are also provided.

CATIA Composer is 3D visualization software creating interactive documentation from CAD data. It improves communication, reduces time-to-market, and lowers costs by enabling interactive manuals, presentations, and training materials. Its key advant

This tutorial explains how to install individual PHP libraries using Composer. It details the composer require command, including version specification, and addresses the limitations of installing libraries without their dependencies, recommending a

This article provides a general guide to animation creation using the unspecified "SW Plugin Composer." It details key steps: project setup, asset import, timeline manipulation, keyframing, tweening, effects, and rendering. While software
