Skip to content

Commit

Permalink
chore: use env var overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Aug 28, 2024
1 parent 30aaa3d commit 22bcb08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/settings.lagoon.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
'password' => getenv('MARIADB_PASSWORD') ?: 'drupal',
'host' => getenv('MARIADB_HOST') ?: 'mariadb',
'port' => getenv('MARIADB_PORT') ?: 3306,
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
'charset' => getenv('MARIADB_CHARSET') ?: 'utf8mb4',
'collation' => getenv('MARIADB_COLLATION') ?: 'utf8mb4_general_ci',
'prefix' => '',
];
}
Expand Down

0 comments on commit 22bcb08

Please sign in to comment.