Commit 0bd5eca7 authored by Jean's avatar Jean Committed by Evan Read

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

Update mysql.md: variables values should be quoted, otherwise you get an "variables config should be a hash of key value pairs" error
parent 54c04dc1
...@@ -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