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
Since version `2.4.2`, the image builds are being tagged. You can now pull a particular version of redmine by specifying the version number. For example,
109
109
110
110
```bash
111
-
docker pull sameersbn/redmine:5.0.12
111
+
docker pull sameersbn/redmine:5.0.13
112
112
```
113
113
114
114
Alternately you can build the image yourself.
@@ -146,7 +146,7 @@ docker run --name=redmine -d \
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:
@@ -321,7 +321,7 @@ docker run --name=redmine -it --rm \
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:
@@ -390,7 +390,7 @@ _Assuming that the memcached server host is 192.168.1.100_
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.
@@ -528,7 +528,7 @@ docker run --name=redmine -d \
@@ -864,7 +864,7 @@ Relaunch the container with the `app:backup:create` argument.
864
864
865
865
```bash
866
866
docker run --name redmine -it --rm [OPTIONS] \
867
-
sameersbn/redmine:5.0.12 app:backup:create
867
+
sameersbn/redmine:5.0.13 app:backup:create
868
868
```
869
869
870
870
The backup will be created in the `backups/` folder of the [Data Store](#data-store). You can change the location using the `REDMINE_BACKUPS_DIR` configuration parameter.
@@ -895,7 +895,7 @@ Relaunch the container with the `app:backup:restore` argument. Ensure you launch
895
895
896
896
```bash
897
897
docker run --name redmine -it --rm [OPTIONS] \
898
-
sameersbn/redmine:5.0.12 app:backup:restore
898
+
sameersbn/redmine:5.0.13 app:backup:restore
899
899
```
900
900
901
901
A list of existing backups will be displayed. Select a backup you wish to restore.
@@ -904,7 +904,7 @@ To avoid this interaction you can specify the backup filename using the `BACKUP`
@@ -954,7 +954,7 @@ To upgrade to newer redmine releases, simply follow this 4 step upgrade procedur
954
954
- **Step 1**: Update the docker image.
955
955
956
956
```bash
957
-
docker pull sameersbn/redmine:5.0.12
957
+
docker pull sameersbn/redmine:5.0.13
958
958
```
959
959
960
960
- **Step 2**: Stop and remove the currently running image
@@ -976,7 +976,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
976
976
- **Step 4**: Start the image
977
977
978
978
```bash
979
-
docker run --name=redmine -d [OPTIONS] sameersbn/redmine:5.0.12
979
+
docker run --name=redmine -d [OPTIONS] sameersbn/redmine:5.0.13
980
980
```
981
981
982
982
When an upgrade is in progress the variable `REDMINE_WAS_UPDATED` will be defined and set to `yes`. This allows easy integration of individual upgrade-steps via `entrypoint.custom.sh`.
0 commit comments