summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2016-10-10 17:35:57 +0200
committerAchilleas Pipinellis <axilleas@axilleas.me>2016-10-10 17:35:57 +0200
commit7aa9675fbd7ca2e45403adb444fc03680f0e5d7a (patch)
tree49de4a40b55bf35e2761a53367e7cc08c6d31dff
parent069d739efd17d8a6af5f3798a37e8f2cbfb02e5b (diff)
downloadgitlab-ce-7aa9675fbd7ca2e45403adb444fc03680f0e5d7a.tar.gz
Add registry to skipped data in backup raketask docs
[ci skip]
-rw-r--r--doc/raketasks/backup_restore.md10
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