webdevops / php-docker-boilerplate

:stew: PHP Docker Boilerplate for Symfony, Wordpress, Joomla or any other PHP Project (NGINX, Apache HTTPd, PHP-FPM, MySQL, Solr, Elasticsearch, Redis, FTP)
https://webdevops.io/projects/php-docker-boilerplate/
MIT License
562 stars 186 forks source link

php-module install #62

Closed dgram closed 7 years ago

dgram commented 7 years ago

hi,

is there a way to add an extra php-module for example php-imap?

regards

mblaschke commented 7 years ago

It's based on the image: With distribution image use the package system to install the modules.

eg. for debian based images use:

RUN apt-install your-package-name inside your Dockerfile to install some stuff.

In the official images :5.6, :7.0 and :7.1 see https://hub.docker.com/_/php/ for more details.

dgram commented 7 years ago

thx perfectly