Skip to content

Commit b99b5ba

Browse files
authored
Merge branch 'master' into master
2 parents ec111c7 + 780e8d4 commit b99b5ba

32 files changed

+1112
-309
lines changed

.circleci/config.yml

Lines changed: 308 additions & 70 deletions
Large diffs are not rendered by default.

.github/stale.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 60
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
- keep-alive
10+
# Label to use when marking an issue as stale
11+
staleLabel: wontfix
12+
# Comment to post when marking an issue as stale. Set to `false` to disable
13+
markComment: >
14+
This issue has been automatically marked as stale because it has not had
15+
any activity for the last 60 days. It will be closed if no further activity
16+
occurs during the next 7 days. Thank you for your contributions.
17+
# Comment to post when closing a stale issue. Set to `false` to disable
18+
closeComment: false

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
*.gem
22
*.tar.gz
3-
3+
*.tar.bz2

Changelog.md

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,110 @@
33
This file only reflects the changes that are made in this image. Please refer to the upstream GitLab [CHANGELOG](
44
https://gitlab.com/gitlab-org/gitlab-foss/blob/master/CHANGELOG.md) for the list of changes in GitLab.
55

6+
**12.9.4**
7+
- gitlab: upgrade CE to v12.9.4
8+
- Update gitlab-workhorse to 8.25.2
9+
- Update golang to 1.13.10
10+
11+
**12.9.2**
12+
- gitlab: upgrade CE to v12.9.2
13+
14+
**12.9.1**
15+
- gitlab: upgrade CE to v12.9.1
16+
17+
**12.9.0**
18+
- gitlab: upgrade CE to v12.9.0
19+
- replaced unicorn with puma
20+
- Removed `UNICORN_WORKERS`
21+
- Removed `UNICORN_TIMEOUT`
22+
- Added `PUMA_THREADS_MIN`
23+
- Added `PUMA_THREADS_MAX`
24+
- Added `PUMA_WORKERS`
25+
- Added `PUMA_TIMEOUT`
26+
27+
**12.8.8**
28+
- gitlab: upgrade CE to v12.8.8
29+
30+
**12.8.7**
31+
- gitlab: upgrade CE to v12.8.7
32+
33+
**12.8.6**
34+
- gitlab: upgrade CE to v12.8.6
35+
36+
**12.8.5**
37+
- gitlab: upgrade CE to v12.8.5
38+
39+
**12.8.4**
40+
- gitlab: upgrade CE to v12.8.4
41+
42+
**12.8.3**
43+
- gitlab: upgrade CE to v12.8.3
44+
45+
**12.8.2**
46+
- gitlab: upgrade CE to v12.8.2
47+
48+
**12.8.1**
49+
- gitlab: upgrade CE to v12.8.1
50+
51+
**12.8.0**
52+
- gitlab: upgrade CE to v12.8.0
53+
- fix: ArgumentError: 'import/{{oauth2_generic_name}}' is not supported [#2101](https://github.com/sameersbn/docker-gitlab/issues/2101)
54+
55+
**12.7.8**
56+
- Upgrade GitLab CE to 12.7.8
57+
58+
**12.7.7**
59+
- Upgrade GitLab CE to 12.7.7
60+
- Add Generic OAuth Provider PR#2070
61+
62+
**12.7.7**
63+
- Upgrade GitLab CE to 12.7.7
64+
65+
**12.7.6**
66+
- gitlab: upgrade CE to v12.7.6
67+
68+
**12.7.5**
69+
- gitlab: upgrade CE to v12.7.5
70+
71+
**12.7.4**
72+
- Upgrade GitLab CE to 12.7.4
73+
- Update golang to 1.13.7
74+
- Update gitlab-pages to 1.15.0
75+
- Update gitlab-workhorse to 8.20.0
76+
- Update gitaly to 1.85.0
77+
78+
**12.7.2**
79+
- Upgrade GitLab CE to 12.7.2
80+
81+
**12.7.0**
82+
- Update gitlab-shell to 11.0.0
83+
- Upgrade GitLab CE to 12.7.0
84+
- Update golang to 1.13.6
85+
- Update gitaly to 1.83.0
86+
- Update gitlab-pages to 1.14.0
87+
- Update gitlab-workhorse to 8.19.0
88+
89+
**12.6.4**
90+
- gitlab: upgrade CE to v12.6.4
91+
92+
**12.6.3**
93+
- gitlab: upgrade CE to v12.6.3
94+
95+
**12.6.2**
96+
- gitlab: upgrade CE to v12.6.2
97+
98+
**12.6.1**
99+
- gitlab: upgrade CE to v12.6.1
100+
101+
**12.6.0**
102+
- gitlab: upgrade CE to v12.6.0
103+
104+
**12.5.7**
105+
- gitlab: upgrade CE to v12.5.7
106+
107+
**12.5.6**
108+
- gitlab: upgrade CE to v12.5.6
109+
6110
**12.5.5**
7111
- gitlab: upgrade CE to v12.5.5
8112

Dockerfile

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
FROM ubuntu:bionic-20191010
1+
FROM ubuntu:bionic-20200219
22

3-
ARG BUILD_DATE
4-
ARG VCS_REF
5-
ARG VERSION=12.5.5
3+
ARG VERSION=12.9.5
64

75
ENV GITLAB_VERSION=${VERSION} \
86
RUBY_VERSION=2.6 \
9-
GOLANG_VERSION=1.12.14 \
10-
GITLAB_SHELL_VERSION=10.2.0 \
11-
GITLAB_WORKHORSE_VERSION=8.14.1 \
12-
GITLAB_PAGES_VERSION=1.12.0 \
13-
GITALY_SERVER_VERSION=1.72.1 \
7+
GOLANG_VERSION=1.13.10 \
8+
GITLAB_SHELL_VERSION=12.2.0 \
9+
GITLAB_WORKHORSE_VERSION=8.25.2 \
10+
GITLAB_PAGES_VERSION=1.17.0 \
11+
GITALY_SERVER_VERSION=12.10.0 \
1412
GITLAB_USER="git" \
1513
GITLAB_HOME="/home/git" \
1614
GITLAB_LOG_DIR="/var/log/gitlab" \
@@ -63,6 +61,9 @@ COPY assets/runtime/ ${GITLAB_RUNTIME_DIR}/
6361
COPY entrypoint.sh /sbin/entrypoint.sh
6462
RUN chmod 755 /sbin/entrypoint.sh
6563

64+
ARG BUILD_DATE
65+
ARG VCS_REF
66+
6667
LABEL \
6768
maintainer="[email protected]" \
6869
org.label-schema.schema-version="1.0" \

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ help:
1111
@echo " 5. make purge - stop and remove the container"
1212

1313
build:
14-
@docker build --tag=sameersbn/gitlab .
14+
@docker build --tag=sameersbn/gitlab . \
15+
--build-arg BUILD_DATE="$(shell date +"%Y-%m-%d %H:%M:%S%:z")" \
16+
--build-arg VCS_REF=$(shell git rev-parse --short HEAD)
1517

1618
release: build
17-
@docker build --tag=sameersbn/gitlab:$(shell cat VERSION) .
19+
@docker build --tag=sameersbn/gitlab:$(shell cat VERSION) . \
20+
--build-arg BUILD_DATE="$(shell date +"%Y-%m-%d %H:%M:%S%:z")" \
21+
--build-arg VCS_REF=$(git describe --tags --always)
1822

1923
quickstart:
2024
@echo "Starting postgresql container..."

0 commit comments

Comments
 (0)