summaryrefslogtreecommitdiff
path: root/tools/docker/entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/docker/entrypoint.sh')
-rwxr-xr-xtools/docker/entrypoint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docker/entrypoint.sh b/tools/docker/entrypoint.sh
index d2b094b..08fa190 100755
--- a/tools/docker/entrypoint.sh
+++ b/tools/docker/entrypoint.sh
@@ -22,7 +22,7 @@ test_database() {
}
reset_data_mysql() {
- mysql -u$db_user -p$db_pass -h $PW_TEST_DB_HOST << EOF
+ mysql -uroot -ppassword -h $PW_TEST_DB_HOST << EOF
DROP DATABASE IF EXISTS patchwork;
CREATE DATABASE patchwork CHARACTER SET utf8;
GRANT ALL ON patchwork.* TO 'patchwork' IDENTIFIED BY 'password';