oliverdavies.uk-drupal-old/web/sites/default/settings.docker.php
Oliver Davies 2bc3d582e9 Remove the proxy container [ci skip]
As there's only one domain for this project, using http://localhost will
fine.
2021-05-24 21:31:44 +01:00

17 lines
350 B
PHP

<?php
$databases['default']['default'] = [
'driver' => 'mysql',
'host' => 'mysql',
'database' => getenv('MYSQL_DATABASE'),
'username' => getenv('MYSQL_USER'),
'password' => getenv('MYSQL_PASSWORD'),
'port' => '3306',
'prefix' => '',
'collation' => 'utf8mb4_general_ci',
];
$settings['trusted_host_patterns'] = [
'^localhost$',
];