Skip to content

Instantly share code, notes, and snippets.

@Luukyb
Last active July 22, 2016 07:06
Show Gist options
  • Save Luukyb/5ecef30fb6da4d4f119f0832c3e14983 to your computer and use it in GitHub Desktop.
Save Luukyb/5ecef30fb6da4d4f119f0832c3e14983 to your computer and use it in GitHub Desktop.
Docker D8 example of settings.local.php for local
<?php
$databases['default']['default'] = array (
'database' => 'drupal',
'username' => 'drupal',
'password' => 'drupal',
'prefix' => '',
'host' => 'db',
'port' => '3306',
'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
'driver' => 'mysql',
);
$settings['container_yamls'][] = DRUPAL_ROOT . '/sites/development.services.yml';
$config['system.performance']['css']['preprocess'] = FALSE;
$config['system.performance']['js']['preprocess'] = FALSE;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment