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,
110
110
111
111
```bash
112
-
docker pull sameersbn/redmine:6.0.7
112
+
docker pull sameersbn/redmine:6.1.0
113
113
```
114
114
115
115
Alternately you can build the image yourself.
@@ -147,7 +147,7 @@ docker run --name=redmine -d \
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:
@@ -334,7 +334,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.
@@ -472,7 +472,7 @@ docker run --name=redmine -d \
@@ -812,7 +812,7 @@ Relaunch the container with the `app:backup:create` argument.
812
812
813
813
```bash
814
814
docker run --name redmine -it --rm [OPTIONS] \
815
-
sameersbn/redmine:6.0.7 app:backup:create
815
+
sameersbn/redmine:6.1.0 app:backup:create
816
816
```
817
817
818
818
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.
@@ -843,7 +843,7 @@ Relaunch the container with the `app:backup:restore` argument. Ensure you launch
843
843
844
844
```bash
845
845
docker run --name redmine -it --rm [OPTIONS] \
846
-
sameersbn/redmine:6.0.7 app:backup:restore
846
+
sameersbn/redmine:6.1.0 app:backup:restore
847
847
```
848
848
849
849
A list of existing backups will be displayed. Select a backup you wish to restore.
@@ -852,7 +852,7 @@ To avoid this interaction you can specify the backup filename using the `BACKUP`
@@ -902,7 +902,7 @@ To upgrade to newer redmine releases, simply follow this 4 step upgrade procedur
902
902
- **Step 1**: Update the docker image.
903
903
904
904
```bash
905
-
docker pull sameersbn/redmine:6.0.7
905
+
docker pull sameersbn/redmine:6.1.0
906
906
```
907
907
908
908
- **Step 2**: Stop and remove the currently running image
@@ -924,7 +924,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
924
924
- **Step 4**: Start the image
925
925
926
926
```bash
927
-
docker run --name=redmine -d [OPTIONS] sameersbn/redmine:6.0.7
927
+
docker run --name=redmine -d [OPTIONS] sameersbn/redmine:6.1.0
928
928
```
929
929
930
930
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`, `pre-install.sh`, and `post-install.sh`.
0 commit comments