Home Development Tools composer docker-composer quickly builds nginx+php environment

docker-composer quickly builds nginx+php environment

Jan 18, 2022 pm 04:09 PM

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
Copy after login

index.php

<?php
/**
 * Created by OrangBus
 * User email: orangbus40400@gmail.com
 * website: orangbus.cn
 * blog: doc.orangbus.cn
 * github: github.com/orangbus
 */echo phpinfo();
Copy after login

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;
 }}
Copy after login

Important note

fastcgi_pass   php8:9000;
Copy after login

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
Copy after login
fastcgi_param  SCRIPT_FILENAME  /html$fastcgi_script_name;
Copy after login

/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 #注意点二
Copy after login

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
Copy after login

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!

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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 add steps to composer centerline How to add steps to composer centerline Mar 06, 2025 pm 01:45 PM

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

What does composer mean What does composer mean Mar 06, 2025 pm 01:54 PM

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

How to map sw composer on an assembly How to map sw composer on an assembly Mar 06, 2025 pm 01:49 PM

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.

What is the function of composer What is the function of composer Mar 06, 2025 pm 01:55 PM

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-

How to start Composer in sw2016? Detailed tutorial on starting Composer in sw2016 How to start Composer in sw2016? Detailed tutorial on starting Composer in sw2016 Mar 06, 2025 pm 01:47 PM

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.

What is catia composer software What is catia composer software Mar 06, 2025 pm 01:53 PM

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

How to specify the installation of a certain library tutorial How to specify the installation of a certain library tutorial Mar 06, 2025 pm 01:51 PM

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

How to make animation tutorial for sw plug-in composer How to make animation tutorial for sw plug-in composer Mar 06, 2025 pm 01:50 PM

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

See all articles