Docker method to modify php.ini: First execute "cd /usr/local/etc/php/conf.d vi upload.ini"; then enter "upload_max_filesize=100M".
The operating environment of this article: deepin 20.2.2 system, PHP7.1 version, DELL G3 computer
How docker modify php. ini?
Today, I changed to the Deepin operating system. The development environment was built through Docker. The specific structure is as follows:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES ef6fadf6ebf0 nginx "nginx -g 'daemon of…" 19 hours ago Up 2 hours 0.0.0.0:8080->80/tcp nginx edb6bc0ad5bc php:7.1-fpm "docker-php-entrypoi…" 19 hours ago Up 2 hours 0.0.0.0:9000->9000/tcp php7.1 c77df990721e mysql:5.6 "docker-entrypoint.s…" 23 hours ago Up 3 hours 0.0.0.0:3306->3306/tcp mysql5.6
The php container is installed through the following command:
docker pull php:7.1-fpm
Now we need to upload files in the project, but the php upload configuration provided by the mirror is:
upload_max_filesize=2M post_max_size=2M
is obviously insufficient, so we need to modify the configuration file, but after searching for a long time, I couldn’t find php.ini Where is the configuration file? Finally, you can do this:
cd /usr/local/etc/php/conf.d vi upload.ini
Enter the following content:
upload_max_filesize=100M post_max_size=100M
In this way, the configuration is completed. Why is this okay? Because the ini configuration file under the /usr/local/etc/php/conf.d directory will be loaded automatically.
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to modify php.ini in docker. 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
