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:
@@ -391,7 +391,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:
876
876
877
877
```bash
878
878
docker run --name gitlab -d [OPTIONS] \
879
-
sameersbn/gitlab:19.1.1 app:sanitize
879
+
sameersbn/gitlab:19.1.2 app:sanitize
880
880
```
881
881
882
882
#### Piwik
@@ -2675,7 +2675,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.
@@ -2710,14 +2710,14 @@ you need to prepare the database:
2710
2710
2711
2711
```bash
2712
2712
docker run --name gitlab -it --rm [OPTIONS] \
2713
-
sameersbn/gitlab:19.1.1 app:rake db:setup
2713
+
sameersbn/gitlab:19.1.2 app:rake db:setup
2714
2714
```
2715
2715
2716
2716
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.
@@ -2856,7 +2856,7 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
2856
2856
- **Step 1**: Update the docker image.
2857
2857
2858
2858
```bash
2859
-
docker pull sameersbn/gitlab:19.1.1
2859
+
docker pull sameersbn/gitlab:19.1.2
2860
2860
```
2861
2861
2862
2862
- **Step 2**: Stop and remove the currently running image
@@ -2886,7 +2886,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
2886
2886
> **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.**
2887
2887
2888
2888
```bash
2889
-
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:19.1.1
2889
+
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:19.1.2
2890
2890
```
2891
2891
2892
2892
### Shell Access
@@ -2922,7 +2922,7 @@ You can also set your `docker-compose.yml` [healthcheck](https://docs.docker.com
0 commit comments