Skip to content
Advertisement

How can I install a pecl extension like mcrypt in DDEV-Local’s web container?

In PHP 7.2 and higher the mcrypt extension is no longer available, but my project depends on it. I know that the project shouldn’t be using something as ancient as mcrypt, but I don’t have any say in this. I know that mcrypt was removed from PHP7.2+ but is still in pecl.

What can I do for this project to support php-mcrypt in 7.2 and higher?

Advertisement

Answer

DDEV-Local supports custom Dockerfiles, so you can add almost anything you want to the web container. See docs.

This .ddev/web-build/Dockerfile will install the mcrypt extension from pecl. It uses the techniques in the links in the question to build php-mcrypt for the PHP version in PHP_VERSION.

If you wanted to install a different pecl extension, you might need just a few less packages, but the idea is the same.

ARG BASE_IMAGE
FROM $BASE_IMAGE

ENV PHP_VERSION=7.4
RUN disable_xdebug 
RUN if [ ! -f /usr/bin/sed ]; then ln -sf /bin/sed /usr/bin/sed; fi
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-confnew" --no-install-recommends --no-install-suggests build-essential make autoconf libc-dev pkg-config php-pear php${PHP_VERSION}-dev libmcrypt-dev
# The "echo" below just forces accepting the "automatic" configuration, the same as hitting <RETURN>
RUN echo | sudo pecl install mcrypt
# Because php7.1-mcrypt is already installed in web container we can just copy its mcrypt.ini
RUN cp /etc/php/7.1/mods-available/mcrypt.ini /etc/php/${PHP_VERSION}/mods-available/ && phpenmod mcrypt

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