Enable the PHP5 module mcrypt

This commit is contained in:
Alexander Mueller 2015-12-07 22:23:09 +01:00
parent 5e3a2e1ced
commit 6c2d63bc01

View File

@ -19,6 +19,9 @@ RUN sed -i -e "s/;daemonize\s*=\s*yes/daemonize = no/g" /etc/php5/fpm/php-fpm.co
# (see /var/log/nginx/error.log for more information then)
RUN sed -i -e "s/listen\s*=.*/listen = \/var\/run\/php5-fpm.sock/g" /etc/php5/fpm/pool.d/www.conf
# enable PHP5 modules
RUN php5enmod mcrypt
# expose Nginx ports
EXPOSE 80
EXPOSE 443