You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Changelog.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
3
3
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-foss/blob/master/CHANGELOG.md) for the list of changes in GitLab.
Copy file name to clipboardExpand all lines: README.md
+27-27Lines changed: 27 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[](http://microbadger.com/images/sameersbn/gitlab"Get your own image badge on microbadger.com")
2
2
3
-
# sameersbn/gitlab:14.9.0
3
+
# sameersbn/gitlab:14.9.1
4
4
5
5
-[Introduction](#introduction)
6
6
-[Changelog](Changelog.md)
@@ -125,7 +125,7 @@ Your docker host needs to have 1GB or more of available RAM to run GitLab. Pleas
125
125
Automated builds of the image are available on [Dockerhub](https://hub.docker.com/r/sameersbn/gitlab) and is the recommended method of installation.
126
126
127
127
```bash
128
-
docker pull sameersbn/gitlab:14.9.0
128
+
docker pull sameersbn/gitlab:14.9.1
129
129
```
130
130
131
131
You can also pull the `latest` tag which is built from the repository *HEAD*
*Please refer to [Available Configuration Parameters](#available-configuration-parameters) to understand `GITLAB_PORT` and other configuration options*
@@ -229,7 +229,7 @@ Volumes can be mounted in docker by specifying the `-v` option in the docker run
Here the image will also automatically fetch the `DB_NAME`, `DB_USER` and `DB_PASS` variables from the postgresql container as they are specified in the `docker run` command for the postgresql container. This is made possible using the magic of docker links and works with the following images:
@@ -347,7 +347,7 @@ The image can be configured to use an external redis server. The configuration s
Please refer the [Available Configuration Parameters](#available-configuration-parameters) section for the list of SMTP parameters that can be specified.
Please refer the [Available Configuration Parameters](#available-configuration-parameters) section for the list of IMAP parameters that can be specified.
In this configuration, any requests made over the plain http protocol will automatically be redirected to use the https protocol. However, this is not optimal when using a load balancer.
When changing this mapping, all files and directories in the mounted data volume `/home/git/data` have to be re-owned by the new ids. This can be achieved automatically using the following command:
766
766
767
767
```bash
768
768
docker run --name gitlab -d [OPTIONS] \
769
-
sameersbn/gitlab:14.9.0 app:sanitize
769
+
sameersbn/gitlab:14.9.1 app:sanitize
770
770
```
771
771
772
772
### Piwik
@@ -1205,7 +1205,7 @@ Execute the rake task to create a backup.
A backup will be created in the backups folder of the [Data Store](#data-store). You can change the location of the backups using the `GITLAB_BACKUP_DIR` configuration parameter.
@@ -1240,14 +1240,14 @@ you need to prepare the database:
1240
1240
1241
1241
```bash
1242
1242
docker run --name gitlab -it --rm [OPTIONS] \
1243
-
sameersbn/gitlab:14.9.0 app:rake db:setup
1243
+
sameersbn/gitlab:14.9.1 app:rake db:setup
1244
1244
```
1245
1245
1246
1246
Execute the rake task to restore a backup. Make sure you run the container in interactive mode `-it`.
Watch the logs and your repositories should be available into your new gitlab container.
@@ -1374,12 +1374,12 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
1374
1374
1375
1375
> **Note**
1376
1376
>
1377
-
> Upgrading to `sameersbn/gitlab:14.9.0` from `sameersbn/gitlab:7.x.x` can cause issues. It is therefore required that you first upgrade to `sameersbn/gitlab:8.0.5-1` before upgrading to `sameersbn/gitlab:8.1.0` or higher.
1377
+
> Upgrading to `sameersbn/gitlab:14.9.1` from `sameersbn/gitlab:7.x.x` can cause issues. It is therefore required that you first upgrade to `sameersbn/gitlab:8.0.5-1` before upgrading to `sameersbn/gitlab:8.1.0` or higher.
1378
1378
1379
1379
-**Step 1**: Update the docker image.
1380
1380
1381
1381
```bash
1382
-
docker pull sameersbn/gitlab:14.9.0
1382
+
docker pull sameersbn/gitlab:14.9.1
1383
1383
```
1384
1384
1385
1385
-**Step 2**: Stop and remove the currently running image
@@ -1405,7 +1405,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
1405
1405
> **Note**: Since GitLab `8.11.0` you need to provide the `GITLAB_SECRETS_SECRET_KEY_BASE` and `GITLAB_SECRETS_OTP_KEY_BASE` parameters while starting the image. These should initially both have the same value as the contents of the `/home/git/data/.secret` file. See [Available Configuration Parameters](#available-configuration-parameters) for more information on these parameters.
1406
1406
1407
1407
```bash
1408
-
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:14.9.0
1408
+
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:14.9.1
0 commit comments