diff options
author | Douwe Maan <douwe@gitlab.com> | 2018-08-14 08:59:10 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2018-08-14 08:59:10 +0000 |
commit | d9614e701a932881e3b64a1785f91e524499541d (patch) | |
tree | ceedc04fd754e0fdd6802a3d21328bc3b173739c /doc/install | |
parent | 2e03eac78e42dcd9230b68beeff987001fe42a96 (diff) | |
parent | eb1a3798adb3836e4ebe641c8eb962b6f7220004 (diff) | |
download | gitlab-ce-d9614e701a932881e3b64a1785f91e524499541d.tar.gz |
Merge branch 'gitaly-install-path' into 'master'
Remove storage path dependency of gitaly install task
See merge request gitlab-org/gitlab-ce!21101
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/installation.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index ea01d88d85f..a310f12b29e 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -153,7 +153,7 @@ page](https://golang.org/dl). # Remove former Go installation folder sudo rm -rf /usr/local/go - + curl --remote-name --progress https://dl.google.com/go/go1.10.3.linux-amd64.tar.gz echo 'fa1b0e45d3b647c252f51f5e1204aba049cde4af177ef9f2181f43004f901035 go1.10.3.linux-amd64.tar.gz' | shasum -a256 -c - && \ sudo tar -C /usr/local -xzf go1.10.3.linux-amd64.tar.gz @@ -494,11 +494,11 @@ Make GitLab start on boot: ### Install Gitaly # Fetch Gitaly source with Git and compile with Go - sudo -u git -H bundle exec rake "gitlab:gitaly:install[/home/git/gitaly]" RAILS_ENV=production + sudo -u git -H bundle exec rake "gitlab:gitaly:install[/home/git/gitaly,/home/git/repositories]" RAILS_ENV=production You can specify a different Git repository by providing it as an extra parameter: - sudo -u git -H bundle exec rake "gitlab:gitaly:install[/home/git/gitaly,https://example.com/gitaly.git]" RAILS_ENV=production + sudo -u git -H bundle exec rake "gitlab:gitaly:install[/home/git/gitaly,/home/git/repositories,https://example.com/gitaly.git]" RAILS_ENV=production Next, make sure gitaly configured: |