Skip to content

Commit 366a6e1

Browse files
committed
upgrade GitLab CE to 14.0.4
1 parent 3d84c35 commit 366a6e1

File tree

10 files changed

+18
-14
lines changed

10 files changed

+18
-14
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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+
**14.0.4**
7+
- gitlab: upgrade CE to v14.0.4
8+
- gitaly: upgrade to v14.0.4
9+
610
**14.0.3**
711
- gitlab: upgrade CE to v14.0.3
812
- gitaly: upgrade to v14.0.3

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
FROM ubuntu:focal-20210609
22

3-
ARG VERSION=14.0.3
3+
ARG VERSION=14.0.4
44

55
ENV GITLAB_VERSION=${VERSION} \
66
RUBY_VERSION=2.7 \
77
GOLANG_VERSION=1.16.5 \
88
GITLAB_SHELL_VERSION=13.19.0 \
99
GITLAB_PAGES_VERSION=1.40.0 \
10-
GITALY_SERVER_VERSION=14.0.3 \
10+
GITALY_SERVER_VERSION=14.0.4 \
1111
GITLAB_USER="git" \
1212
GITLAB_HOME="/home/git" \
1313
GITLAB_LOG_DIR="/var/log/gitlab" \

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.0.3
1+
14.0.4

contrib/docker-swarm/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222

2323
gitlab:
2424
restart: always
25-
image: sameersbn/gitlab:14.0.3
25+
image: sameersbn/gitlab:14.0.4
2626
depends_on:
2727
- redis
2828
- postgresql

docker-compose.swarm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ services:
6363
- traefik-public
6464

6565
gitlab:
66-
image: sameersbn/gitlab:14.0.3
66+
image: sameersbn/gitlab:14.0.4
6767
depends_on:
6868
- redis
6969
- postgresql

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222

2323
gitlab:
2424
restart: always
25-
image: sameersbn/gitlab:14.0.3
25+
image: sameersbn/gitlab:14.0.4
2626
depends_on:
2727
- redis
2828
- postgresql

docs/container_registry.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ docker stop registry gitlab && docker rm registry gitlab
289289
Execute the rake task with a removeable container.
290290
```bash
291291
docker run --name gitlab -it --rm [OPTIONS] \
292-
sameersbn/gitlab:14.0.3 app:rake gitlab:backup:create
292+
sameersbn/gitlab:14.0.4 app:rake gitlab:backup:create
293293
```
294294
## Restoring Backups
295295

@@ -305,7 +305,7 @@ Execute the rake task to restore a backup. Make sure you run the container in in
305305

306306
```bash
307307
docker run --name gitlab -it --rm [OPTIONS] \
308-
sameersbn/gitlab:14.0.3 app:rake gitlab:backup:restore
308+
sameersbn/gitlab:14.0.4 app:rake gitlab:backup:restore
309309
```
310310

311311
The list of all available backups will be displayed in reverse chronological order. Select the backup you want to restore and continue.
@@ -314,7 +314,7 @@ To avoid user interaction in the restore operation, specify the timestamp of the
314314

315315
```bash
316316
docker run --name gitlab -it --rm [OPTIONS] \
317-
sameersbn/gitlab:14.0.3 app:rake gitlab:backup:restore BACKUP=1417624827
317+
sameersbn/gitlab:14.0.4 app:rake gitlab:backup:restore BACKUP=1417624827
318318
```
319319

320320
# Upgrading from an existing GitLab installation
@@ -325,7 +325,7 @@ If you want enable this feature for an existing instance of GitLab you need to d
325325
- **Step 1**: Update the docker image.
326326

327327
```bash
328-
docker pull sameersbn/gitlab:14.0.3
328+
docker pull sameersbn/gitlab:14.0.4
329329
```
330330

331331
- **Step 2**: Stop and remove the currently running image
@@ -378,7 +378,7 @@ docker run --name gitlab -d [PREVIOUS_OPTIONS] \
378378
--env 'GITLAB_REGISTRY_CERT_PATH=/certs/registry-auth.crt' \
379379
--env 'GITLAB_REGISTRY_KEY_PATH=/certs/registry-auth.key' \
380380
--link registry:registry
381-
sameersbn/gitlab:14.0.3
381+
sameersbn/gitlab:14.0.4
382382
```
383383

384384

docs/docker-compose-keycloak.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222

2323
gitlab:
2424
restart: always
25-
image: sameersbn/gitlab:14.0.3
25+
image: sameersbn/gitlab:14.0.4
2626
depends_on:
2727
- redis
2828
- postgresql

docs/docker-compose-registry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222

2323
gitlab:
2424
restart: always
25-
image: sameersbn/gitlab:14.0.3
25+
image: sameersbn/gitlab:14.0.4
2626
volumes:
2727
- gitlab-data:/home/git/data:Z
2828
- gitlab-logs:/var/log/gitlab

kubernetes/gitlab-rc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
spec:
1515
containers:
1616
- name: gitlab
17-
image: sameersbn/gitlab:14.0.3
17+
image: sameersbn/gitlab:14.0.4
1818
env:
1919
- name: TZ
2020
value: Asia/Kolkata

0 commit comments

Comments
 (0)