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
*Please refer to [Available Configuration Parameters](#available-configuration-parameters) to understand `GITLAB_PORT` and other configuration options*
@@ -233,7 +233,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:
@@ -380,7 +380,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:
824
824
825
825
```bash
826
826
docker run --name gitlab -d [OPTIONS] \
827
-
sameersbn/gitlab:18.0.1 app:sanitize
827
+
sameersbn/gitlab:18.0.2 app:sanitize
828
828
```
829
829
830
830
#### Piwik
@@ -2567,7 +2567,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.
@@ -2602,14 +2602,14 @@ you need to prepare the database:
2602
2602
2603
2603
```bash
2604
2604
docker run --name gitlab -it --rm [OPTIONS] \
2605
-
sameersbn/gitlab:18.0.1 app:rake db:setup
2605
+
sameersbn/gitlab:18.0.2 app:rake db:setup
2606
2606
```
2607
2607
2608
2608
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.
@@ -2732,7 +2732,7 @@ Usage when using `docker-compose` can also be found there.
2732
2732
> - As of version 13.7.0, the required PostgreSQL version is 12.x.
2733
2733
> - As of version 16.0.0, the required PostgreSQL version is 13.x.
2734
2734
> - As of version 17.0.0, the required PostgreSQL version is 14.x.
2735
-
> - As of version 18.0.1, the required PostgreSQL version is 16.x.
2735
+
> - As of version 18.0.2, the required PostgreSQL version is 16.x.
2736
2736
>
2737
2737
> If you're using PostgreSQL image other than the above, please review section [Upgrading PostgreSQL](#upgrading-postgresql).
2738
2738
@@ -2742,12 +2742,12 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
2742
2742
2743
2743
> **Note**
2744
2744
>
2745
-
> Upgrading to `sameersbn/gitlab:18.0.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.
2745
+
> Upgrading to `sameersbn/gitlab:18.0.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.
2746
2746
2747
2747
- **Step 1**: Update the docker image.
2748
2748
2749
2749
```bash
2750
-
docker pull sameersbn/gitlab:18.0.1
2750
+
docker pull sameersbn/gitlab:18.0.2
2751
2751
```
2752
2752
2753
2753
- **Step 2**: Stop and remove the currently running image
@@ -2773,7 +2773,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
2773
2773
> **Note**: Since Gitlab 13.7 you need to provide the `GITLAB_SECRETS_ENCRYPTED_SETTINGS_KEY_BASE` parameter while starting the image. If not provided, the key will be generated by gitlab. So you can start the image without setting this parameter. But you will lose the key when you shutting down the container without taking a backup of `secrets.yml`.
2774
2774
2775
2775
```bash
2776
-
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:18.0.1
2776
+
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:18.0.2
2777
2777
```
2778
2778
2779
2779
### Shell Access
@@ -2809,7 +2809,7 @@ You can also set your `docker-compose.yml` [healthcheck](https://docs.docker.com
0 commit comments