From c374a9071991a7deb1f9f224377083595cd1988e Mon Sep 17 00:00:00 2001 From: Andrew Welch Date: Sat, 17 Apr 2021 18:43:08 -0400 Subject: [PATCH 1/2] Bring the debug container in line with the production container, allowing it to work with either Postgres or MySQL --- docker-config/php-dev-craft/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker-config/php-dev-craft/Dockerfile b/docker-config/php-dev-craft/Dockerfile index d4efb7a..1631836 100755 --- a/docker-config/php-dev-craft/Dockerfile +++ b/docker-config/php-dev-craft/Dockerfile @@ -29,10 +29,16 @@ RUN set -eux; \ nano \ optipng \ mysql-client \ + mariadb-connector-c \ + postgresql-client \ + postgresql-dev \ && \ # Install PHP extensions docker-php-ext-install \ pdo_mysql \ + pdo_pgsql \ + pgsql \ + soap \ && \ # Install Composer curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin/ --filename=composer \ From 6c4cf08c25becf0b1116ad56e20b811ffed82b44 Mon Sep 17 00:00:00 2001 From: Andrew Welch Date: Sat, 17 Apr 2021 18:43:15 -0400 Subject: [PATCH 2/2] Version 1.0.17 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e01cc5..1e72c88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # nystudio107/plugindev Change Log +## 1.0.17 - 2021.04.17 +### Changed +* Bring the debug container in line with the production container, allowing it to work with either Postgres or MySQL + ## 1.0.16 - 2021.04.17 ### Changed * Use separate `phpSessionName`s for MySQL and Postgres, to keep us logged in when switching between them