diff options
-rw-r--r-- | doc/examples/build_script_gitlab_ce.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/examples/build_script_gitlab_ce.md b/doc/examples/build_script_gitlab_ce.md index bfbfcdd..e14d045 100644 --- a/doc/examples/build_script_gitlab_ce.md +++ b/doc/examples/build_script_gitlab_ce.md @@ -18,7 +18,7 @@ if [ -f /.dockerinit ]; then cp config/database.yml.mysql config/database.yml sed -i 's/username:.*/username: root/g' config/database.yml sed -i 's/password:.*/password:/g' config/database.yml - sed -i 's/# socket:.*/host: postgres/g' config/database.yml + sed -i 's/# socket:.*/host: mysql/g' config/database.yml cp config/resque.yml.example config/resque.yml sed -i 's/localhost/redis/g' config/resque.yml @@ -90,4 +90,3 @@ or ``` export LANG=en_US.UTF-8 ``` - |