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*
@@ -245,7 +245,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:
@@ -392,7 +392,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:
857
857
858
858
```bash
859
859
docker run --name gitlab -d [OPTIONS] \
860
-
sameersbn/gitlab:18.6.2 app:sanitize
860
+
sameersbn/gitlab:18.7.0 app:sanitize
861
861
```
862
862
863
863
#### Piwik
@@ -2620,7 +2620,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.
@@ -2655,14 +2655,14 @@ you need to prepare the database:
2655
2655
2656
2656
```bash
2657
2657
docker run --name gitlab -it --rm [OPTIONS] \
2658
-
sameersbn/gitlab:18.6.2 app:rake db:setup
2658
+
sameersbn/gitlab:18.7.0 app:rake db:setup
2659
2659
```
2660
2660
2661
2661
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.
@@ -2795,12 +2795,12 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
2795
2795
2796
2796
> **Note**
2797
2797
>
2798
-
> Upgrading to `sameersbn/gitlab:18.6.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.
2798
+
> Upgrading to `sameersbn/gitlab:18.7.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.
2799
2799
2800
2800
- **Step 1**: Update the docker image.
2801
2801
2802
2802
```bash
2803
-
docker pull sameersbn/gitlab:18.6.2
2803
+
docker pull sameersbn/gitlab:18.7.0
2804
2804
```
2805
2805
2806
2806
- **Step 2**: Stop and remove the currently running image
@@ -2830,7 +2830,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
2830
2830
> **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.**
2831
2831
2832
2832
```bash
2833
-
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:18.6.2
2833
+
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:18.7.0
2834
2834
```
2835
2835
2836
2836
### Shell Access
@@ -2866,7 +2866,7 @@ You can also set your `docker-compose.yml` [healthcheck](https://docs.docker.com
0 commit comments