From 04590de350f36cf082b4022c907cb8caded69df6 Mon Sep 17 00:00:00 2001 From: Vincent Massol Date: Tue, 15 Jan 2019 07:26:28 +0100 Subject: [PATCH] [Misc] Rephrased to better explain the 5.6.6 magical version --- xwiki/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwiki/content.md b/xwiki/content.md index ea0360e6c..a67967f54 100644 --- a/xwiki/content.md +++ b/xwiki/content.md @@ -54,7 +54,7 @@ docker run --net=xwiki-nw --name mysql-xwiki -v /my/own/mysql:/var/lib/mysql -e You should adapt the command line to use the passwords that you wish for the MySQL root password and for the xwiki user password. -Note: If you're using MySQL < 5.6.6, you'll need to start MySQL with: +Note: The `explicit-defaults-for-timestamp` parameter was introduced in MySQL 5.6.6 and will thus work only for that version and beyond. If you are using an older MySQL version, please use the following instead: ```console docker run --net=xwiki-nw --name mysql-xwiki -v /my/own/mysql:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=xwiki -e MYSQL_USER=xwiki -e MYSQL_PASSWORD=xwiki -e MYSQL_DATABASE=xwiki -d mysql:5.7 --character-set-server=utf8 --collation-server=utf8_bin