From 31003e1d7feb2864cd70f2bf417ce60d3ed87772 Mon Sep 17 00:00:00 2001 From: EdeMeijer Date: Sat, 18 Apr 2015 17:50:54 +0200 Subject: [PATCH] Add PHP pgsql driver to Dockerfile This fixes not being able to use Cachet with Docker and Postgres (with the -e DB_DRIVER=pgsql option) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6b1f5800..9a6370fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN echo "APT::Install-Recommends \"0\";" >> /etc/apt/apt.conf.d/02recommends && apt-get -qq update && \ apt-get -qq install \ ca-certificates nginx php5-fpm=5.* php5-curl php5-readline php5-mcrypt php5-mysql php5-apcu php5-cli \ - git sqlite libsqlite3-dev curl supervisor && \ + git sqlite libsqlite3-dev curl supervisor php5-pgsql && \ apt-get clean && apt-get autoremove -qq && \ rm -rf /var/lib/apt/lists/* /usr/share/doc /usr/share/man /tmp/* && \ chown -R www-data /var/www/html