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
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
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.
*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:
@@ -370,7 +370,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:
790
790
791
791
```bash
792
792
docker run --name gitlab -d [OPTIONS] \
793
-
sameersbn/gitlab:16.1.1 app:sanitize
793
+
sameersbn/gitlab:16.1.2 app:sanitize
794
794
```
795
795
796
796
#### Piwik
@@ -2448,7 +2448,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.
@@ -2483,14 +2483,14 @@ you need to prepare the database:
2483
2483
2484
2484
```bash
2485
2485
docker run --name gitlab -it --rm [OPTIONS] \
2486
-
sameersbn/gitlab:16.1.1 app:rake db:setup
2486
+
sameersbn/gitlab:16.1.2 app:rake db:setup
2487
2487
```
2488
2488
2489
2489
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.
@@ -2616,12 +2616,12 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
2616
2616
2617
2617
> **Note**
2618
2618
>
2619
-
> Upgrading to `sameersbn/gitlab:16.1.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.
2619
+
> Upgrading to `sameersbn/gitlab:16.1.2` 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.
2620
2620
2621
2621
-**Step 1**: Update the docker image.
2622
2622
2623
2623
```bash
2624
-
docker pull sameersbn/gitlab:16.1.1
2624
+
docker pull sameersbn/gitlab:16.1.2
2625
2625
```
2626
2626
2627
2627
-**Step 2**: Stop and remove the currently running image
@@ -2646,7 +2646,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
2646
2646
> **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.
2647
2647
2648
2648
```bash
2649
-
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:16.1.1
2649
+
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:16.1.2
0 commit comments