Skip to content

Commit 955a890

Browse files
author
Dave Conroy
committed
Release 13.10.0 - See CHANGELOG.md
1 parent 69555af commit 955a890

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 13.10.0 2021-03-23 <dave at tiredofit dot ca>
2+
3+
### Added
4+
- Gitlab-EE 13.10.0
5+
6+
17
## 13.9.4 2021-03-18 <dave at tiredofit dot ca>
28

39
### Added

Dockerfile

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ FROM tiredofit/debian:buster
22
LABEL maintainer="Dave Conroy (dave at tiredofit dot ca)"
33

44
### Set Defaults and Arguments
5-
ENV GITLAB_VERSION="13.9.4-ee" \
5+
ENV GITLAB_VERSION="13.10.0-ee" \
66
GITLAB_SHELL_VERSION="13.17.0" \
7-
GITLAB_WORKHORSE_VERSION="8.63.2" \
8-
GITLAB_PAGES_VERSION="1.35.0" \
9-
GITALY_SERVER_VERSION="13.9.4" \
7+
GITLAB_PAGES_VERSION="1.36.0" \
8+
GITALY_SERVER_VERSION="13.10.0" \
109
GITLAB_ELASTICSEARCH_INDEXER_VERSION="2.9.0" \
1110
GITLAB_USER="git" \
1211
GITLAB_HOME="/home/git" \
@@ -194,6 +193,7 @@ RUN set -x && \
194193
echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \
195194
curl -ssL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - && \
196195
echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/postgres.list && \
196+
echo "deb http://deb.debian.org/debian buster-backports main" > /etc/apt/sources.list.d/buster-backports.list && \
197197
apt-get update && \
198198
apt-get install -y \
199199
gettext-base \
@@ -235,7 +235,7 @@ RUN set -x && \
235235
g++ \
236236
gcc \
237237
gettext \
238-
git \
238+
git/buster-backports \
239239
libc6-dev \
240240
libcurl4-openssl-dev \
241241
libexpat1-dev \
@@ -288,10 +288,10 @@ RUN set -x && \
288288
sudo -u ${GITLAB_USER} git config --global gc.auto 0 && \
289289
sudo -u ${GITLAB_USER} git config --global repack.writeBitmaps true && \
290290
sudo -u ${GITLAB_USER} git config --global receive.advertisePushOptions true && \
291-
sudo -u ${GITLAB_USER} git config --global core.fsyncObjectFiles true
291+
sudo -u ${GITLAB_USER} git config --global core.fsyncObjectFiles true && \
292292
\
293293
### Download and Install Gitlab
294-
RUN set -x; GITLAB_CLONE_URL=https://gitlab.com/gitlab-org/gitlab.git && \
294+
GITLAB_CLONE_URL=https://gitlab.com/gitlab-org/gitlab.git && \
295295
mkdir -p ${GITLAB_INSTALL_DIR} && \
296296
git clone -q -b v${GITLAB_VERSION} --depth 1 ${GITLAB_CLONE_URL} ${GITLAB_INSTALL_DIR} && \
297297
\
@@ -350,6 +350,10 @@ RUN set -x; GITLAB_CLONE_URL=https://gitlab.com/gitlab-org/gitlab.git && \
350350
### disable default nginx configuration and enable gitlab's nginx configuration
351351
rm -rf /etc/nginx/conf.d/default.conf && \
352352
\
353+
### Install Gitlab Workhorse
354+
echo "Building Gitlab Workhorse" && \
355+
make -C ${GITLAB_INSTALL_DIR}/workhorse install && \
356+
\
353357
### Download and Install Gitlab-Shell
354358
cd ${GITLAB_HOME} && \
355359
GITLAB_SHELL_URL=https://gitlab.com/gitlab-org/gitlab-shell/repository/archive.tar.gz && \
@@ -368,13 +372,6 @@ RUN set -x; GITLAB_CLONE_URL=https://gitlab.com/gitlab-org/gitlab.git && \
368372
\
369373
sudo -HEu git rm -rf ${GITLAB_HOME}/repositories && \
370374
\
371-
### Download And Install Gitlab Workhorse
372-
GITLAB_WORKHORSE_URL=https://gitlab.com/gitlab-org/gitlab-workhorse.git && \
373-
GITLAB_WORKHORSE_VERSION=${GITLAB_WORKHOUSE_VERSION:-$(cat ${GITLAB_INSTALL_DIR}/GITLAB_WORKHORSE_VERSION)} && \
374-
echo "Cloning gitlab-workhorse v.${GITLAB_WORKHORSE_VERSION}..." && \
375-
git clone -q -b v${GITLAB_WORKHORSE_VERSION} --depth 1 ${GITLAB_WORKHORSE_URL} /usr/src/gitlab-workhorse && \
376-
make -C /usr/src/gitlab-workhorse install && \
377-
\
378375
### Download and Install Gitlab Elasticsearch-indexer
379376
GITLAB_ELASTICSEARCH_INDEXER_URL=https://gitlab.com/gitlab-org/gitlab-elasticsearch-indexer && \
380377
GITLAB_ELASTICSEARCH_INDEXER_VERSION=${GITLAB_ELASTICSEARCH_INDEXER_VERSION:-$(cat ${GITLAB_INSTALL_DIR}/GITLAB_ELASTICSEARCH_INDEXER_VERSION)} && \
@@ -411,6 +408,7 @@ RUN set -x; GITLAB_CLONE_URL=https://gitlab.com/gitlab-org/gitlab.git && \
411408
## Install Git that comes with Gitaly
412409
make -C /usr/src/gitaly git GIT_PREFIX=/usr/local && \
413410
\
411+
## Final Cleanup
414412
rm -rf ${GITLAB_HOME}/.ssh && \
415413
sudo -HEu git ln -sf ${GITLAB_DATA_DIR}/.ssh ${GITLAB_HOME}/.ssh && \
416414
sed -i \

0 commit comments

Comments
 (0)