From f60f3895dc2f34ca3b7ffceef019c73a1fbf0b7e Mon Sep 17 00:00:00 2001 From: Llewellyn van der Merwe Date: Sat, 27 Jul 2024 21:14:54 +0200 Subject: [PATCH] Update all images with the PostgreSQL connection fix --- 4.4/php8.1/apache/makedb.php | 2 +- 4.4/php8.1/fpm-alpine/makedb.php | 2 +- 4.4/php8.1/fpm/makedb.php | 2 +- 4.4/php8.2/apache/makedb.php | 2 +- 4.4/php8.2/fpm-alpine/makedb.php | 2 +- 4.4/php8.2/fpm/makedb.php | 2 +- 5.1/php8.1/apache/makedb.php | 2 +- 5.1/php8.1/fpm-alpine/makedb.php | 2 +- 5.1/php8.1/fpm/makedb.php | 2 +- 5.1/php8.2/apache/makedb.php | 2 +- 5.1/php8.2/fpm-alpine/makedb.php | 2 +- 5.1/php8.2/fpm/makedb.php | 2 +- 5.1/php8.3/apache/makedb.php | 2 +- 5.1/php8.3/fpm-alpine/makedb.php | 2 +- 5.1/php8.3/fpm/makedb.php | 2 +- 5.2.alpha/php8.1/apache/makedb.php | 2 +- 5.2.alpha/php8.1/fpm-alpine/makedb.php | 2 +- 5.2.alpha/php8.1/fpm/makedb.php | 2 +- 5.2.alpha/php8.2/apache/makedb.php | 2 +- 5.2.alpha/php8.2/fpm-alpine/makedb.php | 2 +- 5.2.alpha/php8.2/fpm/makedb.php | 2 +- 5.2.alpha/php8.3/apache/makedb.php | 2 +- 5.2.alpha/php8.3/fpm-alpine/makedb.php | 2 +- 5.2.alpha/php8.3/fpm/makedb.php | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/4.4/php8.1/apache/makedb.php b/4.4/php8.1/apache/makedb.php index f6db25e..a64d9d3 100644 --- a/4.4/php8.1/apache/makedb.php +++ b/4.4/php8.1/apache/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/4.4/php8.1/fpm-alpine/makedb.php b/4.4/php8.1/fpm-alpine/makedb.php index f6db25e..a64d9d3 100644 --- a/4.4/php8.1/fpm-alpine/makedb.php +++ b/4.4/php8.1/fpm-alpine/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/4.4/php8.1/fpm/makedb.php b/4.4/php8.1/fpm/makedb.php index f6db25e..a64d9d3 100644 --- a/4.4/php8.1/fpm/makedb.php +++ b/4.4/php8.1/fpm/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/4.4/php8.2/apache/makedb.php b/4.4/php8.2/apache/makedb.php index f6db25e..a64d9d3 100644 --- a/4.4/php8.2/apache/makedb.php +++ b/4.4/php8.2/apache/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/4.4/php8.2/fpm-alpine/makedb.php b/4.4/php8.2/fpm-alpine/makedb.php index f6db25e..a64d9d3 100644 --- a/4.4/php8.2/fpm-alpine/makedb.php +++ b/4.4/php8.2/fpm-alpine/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/4.4/php8.2/fpm/makedb.php b/4.4/php8.2/fpm/makedb.php index f6db25e..a64d9d3 100644 --- a/4.4/php8.2/fpm/makedb.php +++ b/4.4/php8.2/fpm/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.1/php8.1/apache/makedb.php b/5.1/php8.1/apache/makedb.php index f6db25e..a64d9d3 100644 --- a/5.1/php8.1/apache/makedb.php +++ b/5.1/php8.1/apache/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.1/php8.1/fpm-alpine/makedb.php b/5.1/php8.1/fpm-alpine/makedb.php index f6db25e..a64d9d3 100644 --- a/5.1/php8.1/fpm-alpine/makedb.php +++ b/5.1/php8.1/fpm-alpine/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.1/php8.1/fpm/makedb.php b/5.1/php8.1/fpm/makedb.php index f6db25e..a64d9d3 100644 --- a/5.1/php8.1/fpm/makedb.php +++ b/5.1/php8.1/fpm/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.1/php8.2/apache/makedb.php b/5.1/php8.2/apache/makedb.php index f6db25e..a64d9d3 100644 --- a/5.1/php8.2/apache/makedb.php +++ b/5.1/php8.2/apache/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.1/php8.2/fpm-alpine/makedb.php b/5.1/php8.2/fpm-alpine/makedb.php index f6db25e..a64d9d3 100644 --- a/5.1/php8.2/fpm-alpine/makedb.php +++ b/5.1/php8.2/fpm-alpine/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.1/php8.2/fpm/makedb.php b/5.1/php8.2/fpm/makedb.php index f6db25e..a64d9d3 100644 --- a/5.1/php8.2/fpm/makedb.php +++ b/5.1/php8.2/fpm/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.1/php8.3/apache/makedb.php b/5.1/php8.3/apache/makedb.php index f6db25e..a64d9d3 100644 --- a/5.1/php8.3/apache/makedb.php +++ b/5.1/php8.3/apache/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.1/php8.3/fpm-alpine/makedb.php b/5.1/php8.3/fpm-alpine/makedb.php index f6db25e..a64d9d3 100644 --- a/5.1/php8.3/fpm-alpine/makedb.php +++ b/5.1/php8.3/fpm-alpine/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.1/php8.3/fpm/makedb.php b/5.1/php8.3/fpm/makedb.php index f6db25e..a64d9d3 100644 --- a/5.1/php8.3/fpm/makedb.php +++ b/5.1/php8.3/fpm/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.2.alpha/php8.1/apache/makedb.php b/5.2.alpha/php8.1/apache/makedb.php index f6db25e..a64d9d3 100644 --- a/5.2.alpha/php8.1/apache/makedb.php +++ b/5.2.alpha/php8.1/apache/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.2.alpha/php8.1/fpm-alpine/makedb.php b/5.2.alpha/php8.1/fpm-alpine/makedb.php index f6db25e..a64d9d3 100644 --- a/5.2.alpha/php8.1/fpm-alpine/makedb.php +++ b/5.2.alpha/php8.1/fpm-alpine/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.2.alpha/php8.1/fpm/makedb.php b/5.2.alpha/php8.1/fpm/makedb.php index f6db25e..a64d9d3 100644 --- a/5.2.alpha/php8.1/fpm/makedb.php +++ b/5.2.alpha/php8.1/fpm/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.2.alpha/php8.2/apache/makedb.php b/5.2.alpha/php8.2/apache/makedb.php index f6db25e..a64d9d3 100644 --- a/5.2.alpha/php8.2/apache/makedb.php +++ b/5.2.alpha/php8.2/apache/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.2.alpha/php8.2/fpm-alpine/makedb.php b/5.2.alpha/php8.2/fpm-alpine/makedb.php index f6db25e..a64d9d3 100644 --- a/5.2.alpha/php8.2/fpm-alpine/makedb.php +++ b/5.2.alpha/php8.2/fpm-alpine/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.2.alpha/php8.2/fpm/makedb.php b/5.2.alpha/php8.2/fpm/makedb.php index f6db25e..a64d9d3 100644 --- a/5.2.alpha/php8.2/fpm/makedb.php +++ b/5.2.alpha/php8.2/fpm/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.2.alpha/php8.3/apache/makedb.php b/5.2.alpha/php8.3/apache/makedb.php index f6db25e..a64d9d3 100644 --- a/5.2.alpha/php8.3/apache/makedb.php +++ b/5.2.alpha/php8.3/apache/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.2.alpha/php8.3/fpm-alpine/makedb.php b/5.2.alpha/php8.3/fpm-alpine/makedb.php index f6db25e..a64d9d3 100644 --- a/5.2.alpha/php8.3/fpm-alpine/makedb.php +++ b/5.2.alpha/php8.3/fpm-alpine/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn) diff --git a/5.2.alpha/php8.3/fpm/makedb.php b/5.2.alpha/php8.3/fpm/makedb.php index f6db25e..a64d9d3 100644 --- a/5.2.alpha/php8.3/fpm/makedb.php +++ b/5.2.alpha/php8.3/fpm/makedb.php @@ -60,7 +60,7 @@ elseif ($dbType === 'pgsql') $maxTries = 10; do { - $connection = "host={$host} port={$port} user={$user} password={$password}"; + $connection = "host={$host} port={$port} user={$user} password={$password} dbname=postgres"; $dbconn = @pg_connect($connection); if (!$dbconn)