Skip to content

Commit

Permalink
make MYSQL_ROOT_PASSWORD and MYSQL_PASSWORD the same value (#857)
Browse files Browse the repository at this point in the history
  • Loading branch information
dougEfresh authored and bsideup committed Sep 5, 2018
1 parent 0901ddf commit 2957046
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected void configure() {
addEnv("MYSQL_DATABASE", databaseName);
addEnv("MYSQL_USER", username);
addEnv("MYSQL_PASSWORD", password);
addEnv("MYSQL_ROOT_PASSWORD", "test");
addEnv("MYSQL_ROOT_PASSWORD", password);
setStartupAttempts(3);
}

Expand Down

0 comments on commit 2957046

Please sign in to comment.