release 7.12.2-1

This commit is contained in:
Sameer Naik 2015-07-07 10:17:39 +05:30
parent db8b2dc197
commit 31dfd02dfd
4 changed files with 30 additions and 27 deletions

View File

@ -2,6 +2,9 @@
This file only reflects the changes that are made in the the docker image. Please refer to the upstream GitLab [CHANGELOG](https://github.com/gitlabhq/gitlabhq/blob/master/CHANGELOG) for the list of changes in GitLab.
**7.12.2-1**
- fixed gitlab:backup:restore raketask
**7.12.2**
- gitlab: upgrade to CE v.7.12.2

View File

@ -61,7 +61,7 @@ Dockerfile to build a [GitLab](https://about.gitlab.com/) container image.
## Version
Current Version: **7.12.2**
Current Version: **7.12.2-1**
# Hardware Requirements
@ -139,7 +139,7 @@ In your issue report please make sure you provide the following information:
Pull the image from the docker index. This is the recommended method of installation as it is easier to update image. These builds are performed by the **Docker Trusted Build** service.
```bash
docker pull sameersbn/gitlab:7.12.2
docker pull sameersbn/gitlab:7.12.2-1
```
You can also pull the `latest` tag which is built from the repository *HEAD*
@ -193,7 +193,7 @@ docker run --name='gitlab' -d \
--publish=10022:22 --publish=10080:80 \
--env='GITLAB_PORT=10080' --env='GITLAB_SSH_PORT=10022' \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
__NOTE__: Please allow a couple of minutes for the GitLab application to start.
@ -227,7 +227,7 @@ Volumes can be mounted in docker by specifying the **'-v'** option in the docker
```bash
docker run --name=gitlab -d \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
## Database
@ -279,7 +279,7 @@ docker run --name=gitlab -d \
--env='DB_HOST=192.168.1.100' --env='DB_NAME=gitlabhq_production' \
--env='DB_USER=gitlab' --env='DB_PASS=password' \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
#### Linking to MySQL Container
@ -322,7 +322,7 @@ We are now ready to start the GitLab application.
```bash
docker run --name=gitlab -d --link=mysql-gitlab:mysql \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
Here the image will also automatically fetch the `DB_NAME`, `DB_USER` and `DB_PASS` variables from the mysql container as they are specified in the `docker run` command for the mysql container. This is made possible using the magic of docker links and works with the following images:
@ -354,7 +354,7 @@ docker run --name=gitlab -d \
--env='DB_NAME=gitlabhq_production' \
--env='DB_USER=gitlab' --env='DB_PASS=password' \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
#### Linking to PostgreSQL Container
@ -397,7 +397,7 @@ We are now ready to start the GitLab application.
```bash
docker run --name=gitlab -d --link=postgresql-gitlab:postgresql \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
Here the image will also automatically fetch the `DB_NAME`, `DB_USER` and `DB_PASS` variables from the postgresql container as they are specified in the `docker run` command for the postgresql container. This is made possible using the magic of docker links and works with the following images:
@ -424,7 +424,7 @@ The image can be configured to use an external redis server. The configuration s
```bash
docker run --name=gitlab -it --rm \
--env='REDIS_HOST=192.168.1.100' --env='REDIS_PORT=6379' \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
### Linking to Redis Container
@ -451,7 +451,7 @@ We are now ready to start the GitLab application.
```bash
docker run --name=gitlab -d --link=redis-gitlab:redisio \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
### Mail
@ -464,7 +464,7 @@ Please refer the [Available Configuration Parameters](#available-configuration-p
docker run --name=gitlab -d \
--env='SMTP_USER=USER@gmail.com' --env='SMTP_PASS=PASSWORD' \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
### SSL
@ -537,7 +537,7 @@ HTTPS support can be enabled by setting the `GITLAB_HTTPS` option to `true`. Add
docker run --name=gitlab -d \
--env='GITLAB_HTTPS=true' --env='SSL_SELF_SIGNED=true' \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
In this configuration, any requests made over the plain http protocol will automatically be redirected to use the https protocol. However, this is not optimal when using a load balancer.
@ -553,7 +553,7 @@ docker run --name=gitlab -d \
--env='GITLAB_HTTPS=true' --env='SSL_SELF_SIGNED=true' \
--env='GITLAB_HTTPS_HSTS_MAXAGE=2592000'
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
If you want to completely disable HSTS set `GITLAB_HTTPS_HSTS_ENABLED` to `false`.
@ -576,7 +576,7 @@ docker run --name=gitlab -d \
--env='GITLAB_SSH_PORT=10022' --env='GITLAB_PORT=443' \
--env='GITLAB_HTTPS=true' --env='SSL_SELF_SIGNED=true' \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
Again, drop the `--env='SSL_SELF_SIGNED=true'` option if you are using CA certified SSL certificates.
@ -624,7 +624,7 @@ Let's assume we want to deploy our application to '/git'. GitLab needs to know t
docker run --name=gitlab -it --rm \
--env='GITLAB_RELATIVE_URL_ROOT=/git' \
--volume=/srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
GitLab will now be accessible at the `/git` path, e.g. `http://www.example.com/git`.
@ -665,7 +665,7 @@ For example, if your Client ID is `xxx` and the Client secret is `yyy`, then add
### External Issue Trackers
Since version `7.12.2` support for external issue trackers can be enabled in the "Service Templates" section of the settings panel.
Since version `7.12.2-1` support for external issue trackers can be enabled in the "Service Templates" section of the settings panel.
If you are using the [docker-redmine](https://github.com/sameersbn/docker-redmine) image, you can *one up* the gitlab integration with redmine by adding `--volumes-from=gitlab` flag to the docker run command while starting the redmine container.
@ -680,14 +680,14 @@ Also the container processes seem to be executed as the host's user/group `1000`
```bash
docker run --name=gitlab -it --rm [options] \
--env="USERMAP_UID=$(id -u git)" --env="USERMAP_GID=$(id -g git)" \
sameersbn/gitlab:7.12.2
sameersbn/gitlab:7.12.2-1
```
When changing this mapping, all files and directories in the mounted data volume `/home/git/data` have to be re-owned by the new ids. This can be achieved automatically using the following command:
```bash
docker run --name=gitlab -d [OPTIONS] \
sameersbn/gitlab:7.12.2 app:sanitize
sameersbn/gitlab:7.12.2-1 app:sanitize
```
### Piwik
@ -822,7 +822,7 @@ Execute the rake task to create a backup.
```bash
docker run --name=gitlab -it --rm [OPTIONS] \
sameersbn/gitlab:7.12.2 app:rake gitlab:backup:create
sameersbn/gitlab:7.12.2-1 app:rake gitlab:backup:create
```
A backup will be created in the backups folder of the [Data Store](#data-store). You can change the location of the backups using the `GITLAB_CI_BACKUP_DIR` configuration parameter.
@ -843,7 +843,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:7.12.2 app:rake gitlab:backup:restore
sameersbn/gitlab:7.12.2-1 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.
@ -852,7 +852,7 @@ To avoid user interaction in the restore operation, specify the timestamp of the
```bash
docker run --name=gitlab -it --rm [OPTIONS] \
sameersbn/gitlab:7.12.2 app:rake gitlab:backup:restore BACKUP=1417624827
sameersbn/gitlab:7.12.2-1 app:rake gitlab:backup:restore BACKUP=1417624827
```
## Automated Backups
@ -906,7 +906,7 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
- **Step 1**: Update the docker image.
```bash
docker pull sameersbn/gitlab:7.12.2
docker pull sameersbn/gitlab:7.12.2-1
```
- **Step 2**: Stop and remove the currently running image
@ -928,7 +928,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
- **Step 4**: Start the image
```bash
docker run --name=gitlab -d [OPTIONS] sameersbn/gitlab:7.12.2
docker run --name=gitlab -d [OPTIONS] sameersbn/gitlab:7.12.2-1
```
## Rake Tasks
@ -937,7 +937,7 @@ The `app:rake` command allows you to run gitlab rake tasks. To run a rake task s
```bash
docker run --name=gitlab -d [OPTIONS] \
sameersbn/gitlab:7.12.2 app:rake gitlab:env:info
sameersbn/gitlab:7.12.2-1 app:rake gitlab:env:info
```
You can also use `docker exec` to run raketasks on running gitlab instance. For example,
@ -950,7 +950,7 @@ Similarly, to import bare repositories into GitLab project instance
```bash
docker run --name=gitlab -d [OPTIONS] \
sameersbn/gitlab:7.12.2 app:rake gitlab:import:repos
sameersbn/gitlab:7.12.2-1 app:rake gitlab:import:repos
```
Or

View File

@ -1 +1 @@
7.12.2
7.12.2-1

View File

@ -7,7 +7,7 @@ postgresql:
volumes:
- /srv/docker/gitlab/postgresql:/var/lib/postgresql
gitlab:
image: sameersbn/gitlab:7.12.2
image: sameersbn/gitlab:7.12.2-1
links:
- redis:redisio
- postgresql:postgresql