Skip to content

Commit 1cab6d5

Browse files
committed
chore: use env var overrides
1 parent b097a58 commit 1cab6d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/settings.lagoon.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
'password' => getenv('MARIADB_PASSWORD') ?: 'drupal',
4141
'host' => getenv('MARIADB_HOST') ?: 'mariadb',
4242
'port' => getenv('MARIADB_PORT') ?: 3306,
43-
'charset' => 'utf8mb4',
44-
'collation' => 'utf8mb4_general_ci',
43+
'charset' => getenv('MARIADB_CHARSET') ?: 'utf8mb4',
44+
'collation' => getenv('MARIADB_COLLATION') ?: 'utf8mb4_general_ci',
4545
'prefix' => '',
4646
];
4747
}

0 commit comments

Comments
 (0)