gitlab: upgrade to CE v8.3.1

This commit is contained in:
Sameer Naik 2015-12-29 09:27:34 +05:30
parent 16e9ce275b
commit 5021235fbb
3 changed files with 13 additions and 1 deletions

View File

@ -2,6 +2,9 @@
This file only reflects the changes that are made in this image. Please refer to the upstream GitLab [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) for the list of changes in GitLab.
**latest**
- gitlab: upgrade to CE v8.3.1
**8.3.0-1**
- fixed static asset routing when `GITLAB_RELATIVE_URL_ROOT` is used.

View File

@ -1,7 +1,7 @@
FROM sameersbn/ubuntu:14.04.20151213
MAINTAINER sameer@damagehead.com
ENV GITLAB_VERSION=8.3.0 \
ENV GITLAB_VERSION=8.3.1 \
GITLAB_SHELL_VERSION=2.6.9 \
GITLAB_WORKHORSE_VERSION=0.5.1 \
GITLAB_USER="git" \

View File

@ -144,6 +144,15 @@ production: &base
plain_url: "{{GITLAB_GRAVATAR_HTTP_URL}}" # default: http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon
ssl_url: "{{GITLAB_GRAVATAR_HTTPS_URL}}" # default: https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon
## Auxiliary jobs
# Periodically executed jobs, to self-heal Gitlab, do external synchronizations, etc.
# Please read here for more information: https://github.com/ondrejbartas/sidekiq-cron#adding-cron-job
cron_jobs:
# Flag stuck CI builds as failed
stuck_ci_builds_worker:
cron: "0 0 * * *"
#
# 2. GitLab CI settings
# ==========================