Skip to content

Commit 573bb06

Browse files
author
Sameer Naik
committed
upgrade to gitlab-6.7.2
1 parent 0d93d3f commit 573bb06

File tree

6 files changed

+30
-7
lines changed

6 files changed

+30
-7
lines changed

Changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

3-
**latest a.k.a HEAD**
3+
**6.7.2**
4+
- upgrade gitlab to 6.7.2
45
- upgrade gitlab-shell to 1.9.1
56
- reorganize repo
67
- do not perform system upgrades (http://crosbymichael.com/dockerfile-best-practices-take-2.html)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
Dockerfile to build a GitLab container image.
3434

3535
## Version
36-
Current Version: 6.6.5
36+
Current Version: 6.7.2
3737

3838
# Hardware Requirements
3939

@@ -82,7 +82,7 @@ docker pull sameersbn/gitlab
8282
Since version 6.3.0, the image builds are being tagged. You can now pull a particular version of gitlab by specifying the version number. For example,
8383

8484
```bash
85-
docker pull sameersbn/gitlab:6.6.5
85+
docker pull sameersbn/gitlab:6.7.2
8686
```
8787

8888
Alternately you can build the image yourself.

assets/setup/config.tar.bz2

78 Bytes
Binary file not shown.

assets/setup/config/gitlabhq/gitlab.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ production: &base
121121
ldap:
122122
enabled: false
123123
host: '_your_ldap_server'
124-
base: '_the_base_where_you_search_for_users'
125124
port: 636
126125
uid: 'sAMAccountName'
127126
method: 'ssl' # "tls" or "ssl" or "plain"
@@ -138,6 +137,20 @@ production: &base
138137
# disable this setting, because the userPrincipalName contains an '@'.
139138
allow_username_or_email_login: true
140139

140+
# Base where we can search for users
141+
#
142+
# Ex. ou=People,dc=gitlab,dc=example
143+
#
144+
base: ''
145+
146+
# Filter LDAP users
147+
#
148+
# Format: RFC 4515
149+
# Ex. (employeeType=developer)
150+
#
151+
user_filter: ''
152+
153+
141154
## OmniAuth settings
142155
omniauth:
143156
# Allow login via Twitter, Google, etc. using OmniAuth providers
@@ -217,6 +230,10 @@ production: &base
217230
## Google analytics. Uncomment if you want it
218231
# google_analytics_id: '_your_tracking_id'
219232

233+
## Piwik analytics.
234+
# piwik_url: '_your_piwik_url'
235+
# piwik_site_id: '_your_piwik_site_id'
236+
220237
## Text under sign-in page (Markdown enabled)
221238
# sign_in_text: |
222239
# ![Company Logo](http://www.companydomain.com/logo.png)
@@ -227,6 +244,11 @@ development:
227244

228245
test:
229246
<<: *base
247+
gravatar:
248+
enabled: true
249+
gitlab:
250+
host: {{GITLAB_HOST}}
251+
port: {{GITLAB_PORT}}
230252
issues_tracker:
231253
redmine:
232254
title: "Redmine"

assets/setup/config/nginx/gitlab

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ server {
2424
server_name {{YOUR_SERVER_FQDN}}; # e.g., server_name source.example.com;
2525
server_tokens off; # don't show the version number, a security best practice
2626
root /home/git/gitlab/public;
27-
27+
2828
# Increase this if you want to upload large attachments
2929
# Or if you want to accept large git objects over http
30-
client_max_body_size 5m;
30+
client_max_body_size 20m;
3131

3232
# individual nginx logs for this gitlab vhost
3333
access_log /var/log/nginx/gitlab_access.log;

assets/setup/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sudo -u git -H ./bin/install
2222

2323
# install gitlab
2424
sudo -u git -H mkdir -p /home/git/gitlab
25-
wget "https://github.com/gitlabhq/gitlabhq/archive/v6.6.5.tar.gz" -O - | tar -zvxf - --strip=1 -C /home/git/gitlab/
25+
wget "https://github.com/gitlabhq/gitlabhq/archive/v6.7.2.tar.gz" -O - | tar -zvxf - --strip=1 -C /home/git/gitlab/
2626
chown -R git:git /home/git/gitlab/
2727

2828
cd /home/git/gitlab

0 commit comments

Comments
 (0)