Skip to content

Commit

Permalink
Add docs for upgrader script
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
  • Loading branch information
dzaporozhets committed Dec 23, 2013
1 parent 25d793e commit cc0d550
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions doc/update/upgrader.md
@@ -0,0 +1,28 @@
# GitLab upgrader

GitLab Upgrader - ruby script that allows you easily upgrade GitLab to latest minor version.
Ex. it can update your application from 6.4 to latest GitLab 6 version (like 6.5.1).
You still need to create backup and manually restart GitLab but all other operations can be done by upgrade tool.

### 0. Backup

cd /home/git/gitlab
sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production

### 1. Stop server

sudo service gitlab stop

### 2. Run gitlab upgrade tool

cd /home/git/gitlab
sudo -u git -H ruby script/upgrade.rb

# it also supports -y option to avouid user input
# sudo -u git -H ruby script/upgrade.rb -y


### 3. Start application

sudo service gitlab start
sudo service nginx restart

0 comments on commit cc0d550

Please sign in to comment.