summaryrefslogtreecommitdiff
path: root/doc/ci
diff options
context:
space:
mode:
authorJean <jeanseurin@mychinaroots.com>2019-05-15 21:45:48 +0000
committerEvan Read <eread@gitlab.com>2019-05-15 21:45:48 +0000
commit0bd5eca73ba915b7c1ef4cb9e60d8db44d6cb082 (patch)
tree662f81d2c2d40da6317d4bd3fa79ee16a2e54eab /doc/ci
parent54c04dc16058c9d99dcf0e553ed348d0715037f2 (diff)
downloadgitlab-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.md4
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: