diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-11-22 11:04:51 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-11-22 11:04:51 +0000 |
commit | 26cf3e477520b7bad33a35ecdeebdce85eb42ecf (patch) | |
tree | 265cad9419b120cd3064be4a95594dfd86a794e7 /doc | |
parent | 36d042009c23537983bf5d769757a05a69bbdef9 (diff) | |
parent | 557dbc840eeeeab2daa1a72278215dede875b07a (diff) | |
download | gitlab-ce-26cf3e477520b7bad33a35ecdeebdce85eb42ecf.tar.gz |
Merge branch 'patch-9' into 'master'
Change docker backup command in readme
See the general Documentation guidelines http://docs.gitlab.com/ce/development/doc_styleguide.html
## What does this MR do?
MR fixes wrong order of parameters in the command given for backing up gitlab in a docker container
## Moving docs to a new location?
No
See merge request !7468
Diffstat (limited to 'doc')
-rw-r--r-- | doc/raketasks/backup_restore.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/raketasks/backup_restore.md b/doc/raketasks/backup_restore.md index 0ad84705cfd..7484bc2295e 100644 --- a/doc/raketasks/backup_restore.md +++ b/doc/raketasks/backup_restore.md @@ -32,7 +32,7 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production ``` If you are running GitLab within a Docker container, you can run the backup from the host: ``` -docker -t exec <container name> gitlab-rake gitlab:backup:create +docker exec -t <container name> gitlab-rake gitlab:backup:create ``` You can specify that portions of the application data be skipped using the |