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*
@@ -246,7 +246,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:
@@ -393,7 +393,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:
878
878
879
879
```bash
880
880
docker run --name gitlab -d [OPTIONS] \
881
-
sameersbn/gitlab:18.11.2 app:sanitize
881
+
sameersbn/gitlab:18.11.3 app:sanitize
882
882
```
883
883
884
884
#### Piwik
@@ -2677,7 +2677,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.
@@ -2712,14 +2712,14 @@ you need to prepare the database:
2712
2712
2713
2713
```bash
2714
2714
docker run --name gitlab -it --rm [OPTIONS] \
2715
-
sameersbn/gitlab:18.11.2 app:rake db:setup
2715
+
sameersbn/gitlab:18.11.3 app:rake db:setup
2716
2716
```
2717
2717
2718
2718
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.
@@ -2852,12 +2852,12 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
2852
2852
2853
2853
> **Note**
2854
2854
>
2855
-
> Upgrading to `sameersbn/gitlab:18.11.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.
2855
+
> Upgrading to `sameersbn/gitlab:18.11.3` 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.
2856
2856
2857
2857
- **Step 1**: Update the docker image.
2858
2858
2859
2859
```bash
2860
-
docker pull sameersbn/gitlab:18.11.2
2860
+
docker pull sameersbn/gitlab:18.11.3
2861
2861
```
2862
2862
2863
2863
- **Step 2**: Stop and remove the currently running image
@@ -2887,7 +2887,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
2887
2887
> **Note**: Since Gitlab 17.8 you need to provide `GITLAB_SECRETS_ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY`,`GITLAB_SECRETS_ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY` and `GITLAB_SECRETS_ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT`. If not provided, these keys will be generated by gitlab. The image can be started without setting these parameters, **but you will lose the settings when you shutting down the container without taking a backup of `secrets.yml` and settings stored securely (such as the Dependency Proxy) will be unusable and unrecoverable.**
2888
2888
2889
2889
```bash
2890
-
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:18.11.2
2890
+
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:18.11.3
2891
2891
```
2892
2892
2893
2893
### Shell Access
@@ -2923,7 +2923,7 @@ You can also set your `docker-compose.yml` [healthcheck](https://docs.docker.com
0 commit comments