Skip to content

Commit

Permalink
Update all images with the PostgreSQL connection fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Llewellynvdm committed Jul 27, 2024
1 parent 56e8a0f commit f60f389
Show file tree
Hide file tree
Showing 24 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion 4.4/php8.1/apache/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 4.4/php8.1/fpm-alpine/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 4.4/php8.1/fpm/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 4.4/php8.2/apache/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 4.4/php8.2/fpm-alpine/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 4.4/php8.2/fpm/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.1/php8.1/apache/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.1/php8.1/fpm-alpine/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.1/php8.1/fpm/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.1/php8.2/apache/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.1/php8.2/fpm-alpine/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.1/php8.2/fpm/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.1/php8.3/apache/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.1/php8.3/fpm-alpine/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.1/php8.3/fpm/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.2.alpha/php8.1/apache/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.2.alpha/php8.1/fpm-alpine/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.2.alpha/php8.1/fpm/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.2.alpha/php8.2/apache/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.2.alpha/php8.2/fpm-alpine/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.2.alpha/php8.2/fpm/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.2.alpha/php8.3/apache/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.2.alpha/php8.3/fpm-alpine/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down
2 changes: 1 addition & 1 deletion 5.2.alpha/php8.3/fpm/makedb.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$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)
Expand Down

0 comments on commit f60f389

Please sign in to comment.