Add registry to skipped data in backup raketask docs

[ci skip]
This commit is contained in:
Achilleas Pipinellis 2016-10-10 17:35:57 +02:00
parent 069d739efd
commit 7aa9675fbd
1 changed files with 6 additions and 4 deletions

View File

@ -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