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
* Update docker-compose.yml
Upgrade GitLab CE to 13.0.6
* Update GitLab CE to 13.0.6
* Upgrade GitLab CE to 13.0.6
* Upgrade GitLab CE to 13.0.6
* Upgrade GitLab CE to 13.0.6
changed postgres version.
* Upgrade GitLab CE to 13.0.6
* Upgrade GitLab CE to 13.0.6
* Upgrade GitLab CE to 13.0.6
* Upgrade GitLab CE to 13.0.6
* Upgrade GitLab CE to 13.0.6
* Upgrade GitLab CE to 13.0.6
postgresql 11
Copy file name to clipboardExpand all lines: README.md
+31-31Lines changed: 31 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[](http://microbadger.com/images/sameersbn/gitlab"Get your own image badge on microbadger.com")
2
2
3
-
# sameersbn/gitlab:13.0.5
3
+
# sameersbn/gitlab:13.0.6
4
4
5
5
-[Introduction](#introduction)
6
6
-[Changelog](Changelog.md)
@@ -124,7 +124,7 @@ Your docker host needs to have 1GB or more of available RAM to run GitLab. Pleas
124
124
Automated builds of the image are available on [Dockerhub](https://hub.docker.com/r/sameersbn/gitlab) and is the recommended method of installation.
125
125
126
126
```bash
127
-
docker pull sameersbn/gitlab:13.0.5
127
+
docker pull sameersbn/gitlab:13.0.6
128
128
```
129
129
130
130
You can also pull the `latest` tag which is built from the repository *HEAD*
@@ -171,7 +171,7 @@ docker run --name gitlab-postgresql -d \
*Please refer to [Available Configuration Parameters](#available-configuration-parameters) to understand `GITLAB_PORT` and other configuration options*
@@ -228,7 +228,7 @@ Volumes can be mounted in docker by specifying the `-v` option in the docker run
The above command will create a database named `gitlabhq_production` and also create a user named `gitlab` with the password `password` with access to the `gitlabhq_production` database.
@@ -305,7 +305,7 @@ We are now ready to start the GitLab application.
305
305
```bash
306
306
docker run --name gitlab -d --link gitlab-postgresql:postgresql \
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:
@@ -332,7 +332,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:
744
744
745
745
```bash
746
746
docker run --name gitlab -d [OPTIONS] \
747
-
sameersbn/gitlab:13.0.5 app:sanitize
747
+
sameersbn/gitlab:13.0.6 app:sanitize
748
748
```
749
749
750
750
### Piwik
@@ -1127,7 +1127,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.
@@ -1162,14 +1162,14 @@ you need to prepare the database:
1162
1162
1163
1163
```bash
1164
1164
docker run --name gitlab -it --rm [OPTIONS] \
1165
-
sameersbn/gitlab:13.0.5 app:rake db:setup
1165
+
sameersbn/gitlab:13.0.6 app:rake db:setup
1166
1166
```
1167
1167
1168
1168
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.
@@ -1294,12 +1294,12 @@ To upgrade to newer gitlab releases, simply follow this 4 step upgrade procedure
1294
1294
1295
1295
> **Note**
1296
1296
>
1297
-
> Upgrading to `sameersbn/gitlab:13.0.5` 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.
1297
+
> Upgrading to `sameersbn/gitlab:13.0.6` 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.
1298
1298
1299
1299
-**Step 1**: Update the docker image.
1300
1300
1301
1301
```bash
1302
-
docker pull sameersbn/gitlab:13.0.5
1302
+
docker pull sameersbn/gitlab:13.0.6
1303
1303
```
1304
1304
1305
1305
-**Step 2**: Stop and remove the currently running image
@@ -1325,7 +1325,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
1325
1325
> **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.
1326
1326
1327
1327
```bash
1328
-
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:13.0.5
1328
+
docker run --name gitlab -d [OPTIONS] sameersbn/gitlab:13.0.6
0 commit comments