diff --git a/README.md b/README.md index e31fc42aae63d78ce3fd1175d311a763a777daa5..791820d1ed2b2e11ce1f28db35c06676205d91a9 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,12 @@ 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: + +```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 +``` + #### Starting PostgreSQL The command below will also configure the PostgreSQL container to save its data on your localhost in a `/my/own/postgres` directory: