php-docker-boilerplate icon indicating copy to clipboard operation
php-docker-boilerplate copied to clipboard

Databases Connection

Open kenjiroe opened this issue 8 years ago • 1 comments

WordPress is not connection db port:13306 or 3306 by default.

kenjiroe avatar Aug 03 '17 04:08 kenjiroe

There's very less details here, but if you want to use this boilerplate with wordpress, you must configure the following database credentials in your WordPress:

define('DB_NAME', 'database');
define('DB_USER', 'dev');
define('DB_PASSWORD', 'dev');
define('DB_HOST', 'mysql:3306');

htuscher avatar Aug 03 '17 08:08 htuscher