TetraWeb / docker

Set of docker PHP images for continuous integration
58 stars 24 forks source link

All installed php extensions are missing #45

Closed Jekis closed 8 years ago

Jekis commented 8 years ago

Why do you remove all extensions?

for ext in $phpModules; do \
    rm -f /usr/local/etc/php/conf.d/docker-php-ext-$ext.ini; \
done
abcdmitry commented 8 years ago

I don't think all extensions should be loaded by default. For example xdebug slows down composer and it is better to enable it after composer install. You can still enable any extension listed on README page with docker-php-ext-enable

Jekis commented 8 years ago

Yes, you are right. It would be nice to mention this in readme :) Thank you!

abcdmitry commented 8 years ago

Here you go https://github.com/TetraWeb/docker/tree/master/php#php-modules

Jekis commented 8 years ago

My fault!