Install PHP extensions for Docker image
26 September 2022 (Updated 26 September 2022)
In a nutshell
Before installing an extension, check if it’s already installed in your Docker image. Start an interactive bash session in your container and run php -m | grep <extension>
. For example:
Once you’ve checked it’s not already installed, you can do something like this:
The steps are:
- Install system dependencies (e.g., Ubuntu APT packages)
- If needed, use
docker-php-ext-configure
to configure the extension prior to installation. - Use
docker-php-ext-install
to install the extension.
Make things easier with docker-php-extension-installer
You can also use the docker-php-extension-installer
project to ease this process. You get ainstall-php-extensions
script that takes care of automatically adding and removing Debian (APT) and Alpine (APK) packages for you. For example, to install the gd
extensions, you can run:
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment