release 8.9.0

This commit is contained in:
Sameer Naik 2016-06-24 12:28:49 +05:30
parent fd6f96db80
commit 70d4be9f33

View File

@ -61,7 +61,7 @@ services:
gitlab:
restart: always
image: sameersbn/gitlab:8.8.5-1
image: sameersbn/gitlab:8.9.0
depends_on:
- redis
- postgresql
@ -135,7 +135,7 @@ docker stop registry gitlab && docker rm registry gitlab
Execute the rake task with a removeable container.
```bash
docker run --name gitlab -it --rm [OPTIONS] \
sameersbn/gitlab:8.8.5-1 app:rake gitlab:backup:create
sameersbn/gitlab:8.9.0 app:rake gitlab:backup:create
```
## Restoring Backups
@ -151,7 +151,7 @@ Execute the rake task to restore a backup. Make sure you run the container in in
```bash
docker run --name gitlab -it --rm [OPTIONS] \
sameersbn/gitlab:8.8.5-1 app:rake gitlab:backup:restore
sameersbn/gitlab:8.9.0 app:rake gitlab:backup:restore
```
The list of all available backups will be displayed in reverse chronological order. Select the backup you want to restore and continue.
@ -160,7 +160,7 @@ To avoid user interaction in the restore operation, specify the timestamp of the
```bash
docker run --name gitlab -it --rm [OPTIONS] \
sameersbn/gitlab:8.8.5-1 app:rake gitlab:backup:restore BACKUP=1417624827
sameersbn/gitlab:8.9.0 app:rake gitlab:backup:restore BACKUP=1417624827
```
# Upgrading from an existing GitLab installation
@ -171,7 +171,7 @@ If you want enable this feature for an existing instance of GitLab you need to d
- **Step 1**: Update the docker image.
```bash
docker pull sameersbn/gitlab:8.8.5-1
docker pull sameersbn/gitlab:8.9.0
```
- **Step 2**: Stop and remove the currently running image
@ -223,5 +223,5 @@ docker run --name gitlab -d [PREVIOUS_OPTIONS] \
--env 'GITLAB_REGISTRY_API_URL=http://registry:5000/' \
--env 'GITLAB_REGISTRY_KEY_PATH=/certs/registry-auth.key' \
--link registry:registry
sameersbn/gitlab:8.8.5-1
sameersbn/gitlab:8.9.0
```