diff options
author | Jean <jeanseurin@mychinaroots.com> | 2019-05-15 21:45:48 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2019-05-15 21:45:48 +0000 |
commit | 0bd5eca73ba915b7c1ef4cb9e60d8db44d6cb082 (patch) | |
tree | 662f81d2c2d40da6317d4bd3fa79ee16a2e54eab /doc/ci | |
parent | 54c04dc16058c9d99dcf0e553ed348d0715037f2 (diff) | |
download | gitlab-ce-0bd5eca73ba915b7c1ef4cb9e60d8db44d6cb082.tar.gz |
Update mysql.md: variables values should be quoted, otherwise you get an "variables config should be a hash of key value pairs" error
Diffstat (limited to 'doc/ci')
-rw-r--r-- | doc/ci/services/mysql.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ci/services/mysql.md b/doc/ci/services/mysql.md index 2902c30c7c0..0de6a93514a 100644 --- a/doc/ci/services/mysql.md +++ b/doc/ci/services/mysql.md @@ -17,8 +17,8 @@ services: variables: # Configure mysql environment variables (https://hub.docker.com/_/mysql/) - MYSQL_DATABASE: el_duderino - MYSQL_ROOT_PASSWORD: mysql_strong_password + MYSQL_DATABASE: "<your_mysql_database>" + MYSQL_ROOT_PASSWORD: "mysql_strong_password" ``` And then configure your application to use the database, for example: |