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.2.4 app:sanitize
860
+
sameersbn/gitlab:18.3.0 app:sanitize
861
861
```
862
862
863
863
#### Piwik
@@ -2612,7 +2612,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.
@@ -2647,14 +2647,14 @@ you need to prepare the database:
2647
2647
2648
2648
```bash
2649
2649
docker run --name gitlab -it --rm [OPTIONS] \
2650
-
sameersbn/gitlab:18.2.4 app:rake db:setup
2650
+
sameersbn/gitlab:18.3.0 app:rake db:setup
2651
2651
```
2652
2652
2653
2653
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.
@@ -2787,12 +2787,12 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
2787
2787
2788
2788
> **Note**
2789
2789
>
2790
-
> Upgrading to `sameersbn/gitlab:18.2.4` 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.
2790
+
> Upgrading to `sameersbn/gitlab:18.3.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.
2791
2791
2792
2792
- **Step 1**: Update the docker image.
2793
2793
2794
2794
```bash
2795
-
docker pull sameersbn/gitlab:18.2.4
2795
+
docker pull sameersbn/gitlab:18.3.0
2796
2796
```
2797
2797
2798
2798
- **Step 2**: Stop and remove the currently running image
@@ -2822,7 +2822,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
2822
2822
> **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.**
2823
2823
2824
2824
```bash
2825
-
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:18.2.4
2825
+
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:18.3.0
2826
2826
```
2827
2827
2828
2828
### Shell Access
@@ -2858,7 +2858,7 @@ You can also set your `docker-compose.yml` [healthcheck](https://docs.docker.com
0 commit comments