Skip to content
Advertisement

How to enable php extensions when using the image php:7.2-apache with docker-compose?

I want to run a apache webserver with php extension inside container using docker compose as deployment.

My compose file looks like this:

JavaScript

how can I enable the following extensions.

JavaScript

Advertisement

Answer

First of all you can run php -m in php container to see installed and enabled modules.

You can edit your docker-compose.yml like this:

JavaScript

Create a file called Dockerfile beside docker-compose.yml with the following contents:

JavaScript

Finally, let’s go one by one:

JavaScript

Is installed.

JavaScript

Is enabled.

JavaScript

Add Dockerfile:

JavaScript
JavaScript

Add to Dockerfile:

JavaScript
JavaScript

Add to Dockerfile:

JavaScript
JavaScript

Add to Dockerfile:

JavaScript
JavaScript

Is installed.

JavaScript

Add to Dockerfile:

JavaScript

php-gettext

JavaScript

php7.2-mbstring

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement