Change hostname from 127.0.0.1 to mysql

This commit is contained in:
cytopia 2019-01-29 15:42:04 +01:00
parent 67c3d8bd13
commit 233c906d57
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2

View File

@ -33,9 +33,9 @@ $i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = getenv('MYSQL_ROOT_PASSWORD');
$cfg['Servers'][$i]['password'] = getenv('MYSQL_ROOT_PASSWORD');
/* Server parameters */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['host'] = 'mysql';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = true;