From 06926561e238b4a8d81c106e073b87dfb4563191 Mon Sep 17 00:00:00 2001 From: Michael Wyraz Date: Thu, 21 Nov 2019 13:32:45 +0100 Subject: [PATCH] Install php-mysql on roundcube container --- webmails/roundcube/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webmails/roundcube/Dockerfile b/webmails/roundcube/Dockerfile index ad326767..53c043d9 100644 --- a/webmails/roundcube/Dockerfile +++ b/webmails/roundcube/Dockerfile @@ -21,7 +21,7 @@ ENV ROUNDCUBE_URL https://github.com/roundcube/roundcubemail/releases/download/1 RUN apt-get update && apt-get install -y \ zlib1g-dev libzip4 libzip-dev \ python3-jinja2 \ - && docker-php-ext-install zip \ + && docker-php-ext-install zip pdo_mysql \ && echo date.timezone=UTC > /usr/local/etc/php/conf.d/timezone.ini \ && rm -rf /var/www/html/ \ && cd /var/www \