diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-10-10 17:35:57 +0200 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-10-10 17:35:57 +0200 |
commit | 7aa9675fbd7ca2e45403adb444fc03680f0e5d7a (patch) | |
tree | 49de4a40b55bf35e2761a53367e7cc08c6d31dff /doc/raketasks | |
parent | 069d739efd17d8a6af5f3798a37e8f2cbfb02e5b (diff) | |
download | gitlab-ce-7aa9675fbd7ca2e45403adb444fc03680f0e5d7a.tar.gz |
Add registry to skipped data in backup raketask docs
[ci skip]
Diffstat (limited to 'doc/raketasks')
-rw-r--r-- | doc/raketasks/backup_restore.md | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/raketasks/backup_restore.md b/doc/raketasks/backup_restore.md index 91c2df7d464..26baffdf792 100644 --- a/doc/raketasks/backup_restore.md +++ b/doc/raketasks/backup_restore.md @@ -32,15 +32,17 @@ sudo -u git -H bundle exec rake gitlab:backup:create RAILS_ENV=production ``` You can specify that portions of the application data be skipped using the -environment variable `SKIP`. You can skip: -- `db` +environment variable `SKIP`. You can skip: + +- `db` (database) - `uploads` (attachments) -- `repositories` +- `repositories` (Git repositories data) - `builds` (CI build output logs) - `artifacts` (CI build artifacts) - `lfs` (LFS objects) +- `registry` (Container Registry images) -Separate multiple data types to skip using a comma. For example: +Separate multiple data types to skip using a comma. For example: ``` sudo gitlab-rake gitlab:backup:create SKIP=db,uploads |