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
Copy file name to clipboardExpand all lines: README.md
+28-28Lines changed: 28 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
[](https://quay.io/repository/sameersbn/gitlab)
2
2
[](http://microbadger.com/images/sameersbn/gitlab"Get your own image badge on microbadger.com")
3
3
4
-
# sameersbn/gitlab:11.8.2
4
+
# sameersbn/gitlab:11.8.3
5
5
6
6
-[Introduction](#introduction)
7
7
-[Changelog](Changelog.md)
@@ -128,7 +128,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co
128
128
> **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/gitlab)
129
129
130
130
```bash
131
-
docker pull sameersbn/gitlab:11.8.2
131
+
docker pull sameersbn/gitlab:11.8.3
132
132
```
133
133
134
134
You can also pull the `latest` tag which is built from the repository *HEAD*
*Please refer to [Available Configuration Parameters](#available-configuration-parameters) to understand `GITLAB_PORT` and other configuration options*
@@ -232,7 +232,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:
Here the image will also automatically fetch the `DB_NAME`, `DB_USER` and `DB_PASS` variables from the mysql container as they are specified in the `docker run` command for the mysql container. This is made possible using the magic of docker links and works with the following images:
@@ -433,7 +433,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:
837
837
838
838
```bash
839
839
docker run --name gitlab -d [OPTIONS] \
840
-
sameersbn/gitlab:11.8.2 app:sanitize
840
+
sameersbn/gitlab:11.8.3 app:sanitize
841
841
```
842
842
843
843
### Piwik
@@ -1187,7 +1187,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.
@@ -1215,14 +1215,14 @@ you need to prepare the database:
1215
1215
1216
1216
```bash
1217
1217
docker run --name gitlab -it --rm [OPTIONS] \
1218
-
sameersbn/gitlab:11.8.2 app:rake db:setup
1218
+
sameersbn/gitlab:11.8.3 app:rake db:setup
1219
1219
```
1220
1220
1221
1221
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.
@@ -1346,12 +1346,12 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
1346
1346
1347
1347
> **Note**
1348
1348
>
1349
-
> Upgrading to `sameersbn/gitlab:11.8.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.
1349
+
> Upgrading to `sameersbn/gitlab:11.8.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.
1350
1350
1351
1351
-**Step 1**: Update the docker image.
1352
1352
1353
1353
```bash
1354
-
docker pull sameersbn/gitlab:11.8.2
1354
+
docker pull sameersbn/gitlab:11.8.3
1355
1355
```
1356
1356
1357
1357
-**Step 2**: Stop and remove the currently running image
@@ -1377,7 +1377,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
1377
1377
> **Note**: Since GitLab `8.11.0` you need to provide the `GITLAB_SECRETS_SECRET_KEY_BASE` and `GITLAB_SECRETS_OTP_KEY_BASE` parameters while starting the image. These should initially both have the same value as the contents of the `/home/git/data/.secret` file. See [Available Configuration Parameters](#available-configuration-parameters) for more information on these parameters.
1378
1378
1379
1379
```bash
1380
-
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:11.8.2
1380
+
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:11.8.3
0 commit comments