Commit 4a7db7fb authored by Evan Read's avatar Evan Read

Merge branch 'patch-37' into 'master'

Update mysql.md: variables values should be quoted, otherwise you get an...

See merge request gitlab-org/gitlab-ce!24214
parents 54c04dc1 0bd5eca7
...@@ -17,8 +17,8 @@ services: ...@@ -17,8 +17,8 @@ services:
variables: variables:
# Configure mysql environment variables (https://hub.docker.com/_/mysql/) # Configure mysql environment variables (https://hub.docker.com/_/mysql/)
MYSQL_DATABASE: el_duderino MYSQL_DATABASE: "<your_mysql_database>"
MYSQL_ROOT_PASSWORD: mysql_strong_password MYSQL_ROOT_PASSWORD: "mysql_strong_password"
``` ```
And then configure your application to use the database, for example: And then configure your application to use the database, for example:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment