by Devin Yang
(This article was automatically translated.)

Published - 6 years ago ( Updated - 6 years ago )

D-Laravel has provided a built php image, if you need to adjust it yourself and build your own dedicated image is quite simple.

1. First, enter dockerfiles/fpm in D-Laravel , and select the PHP version you want to build, such as 7.2.
The command is as follows:
cd dockerfiles/fpm/7.2

2. You can adjust the PHP extensions to be installed according to your own needs.
If you want to know about PHP's Dockerfile configuration, you can refer to the official link below:
https://hub.docker.com/_/php/

Example: PECL extension package installation.

3. When a new version of the PHP image is released, we can actually simply adjust the version number on the Dockerfile to build the latest version of the PHP fpm image.
E.g:
Original:
FROM php:7.2.1-fpm
changed to
FROM php:7.2.2-fpm

4. After the modification is completed, you can execute the command to perform the Build Image action.
E.g:
docker build -t myimage .

5. Remember to update our docker-compose.yml file, and change the PHP image to the image you built.
docker-compose.yml

Tags: dlaravel

Devin Yang

Feel free to ask me, if you don't get it.:)

No Comment

Post your comment

Login is required to leave comments

Similar Stories


nginx,dlaravel

How to configure HTTPS on nginx to get an SSL A+ score from Qualys

This article describes how to adjust the ssl settings of nginx so that the website can obtain an SSL report and get an A+ rating. Here I am using letsencrypt free credentials. As long as you use the official Docker nginx new version image preset by D-Laravel, you should be able to achieve the same effect as mine. You can check your host SSL settings through the following. https://www.ssllabs.com/ssltest/index.html

dlaravel

How to automatically detect and update the certificate issued by let's encrypt through getssl

It's really great that let's encrypt provides free certificates. However, is it a bit troublesome to update the certificate every three months? This article introduces how to generate multi-domain SAN certificate settings through getssl, and schedule automatic certificate renewal. It's very simple, just six steps to get it done.

dlaravel

Ha, I successfully made D-Larave run in the Raspberry Pi ARM environment

I bought the Raspberry Pi this time because I thought it was very fun. In addition, the Mac environment in my home is too new to compile Line Simple Beacon normally. Through the Raspberry Pi, it is easy to use, and there will be no problems in the environment. Of course, there are more applications. But as the author of D-Laravel, of course I have to come and give it a try.....