Skip to content

Commit 86a9204

Browse files
authored
Merge pull request #18 from amazeeio/mariadb_port
use MARIADB_PORT variable in database settings
2 parents 18aaa97 + 56dda4c commit 86a9204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/settings.lagoon.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
'username' => getenv('MARIADB_USERNAME') ?: 'drupal',
3838
'password' => getenv('MARIADB_PASSWORD') ?: 'drupal',
3939
'host' => getenv('MARIADB_HOST') ?: 'mariadb',
40-
'port' => 3306,
40+
'port' => getenv('MARIADB_PORT') ?: 3306,
4141
'prefix' => '',
4242
];
4343
}

0 commit comments

Comments
 (0)