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.1.1
112
+
docker pull sameersbn/redmine:6.1.2
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 \
@@ -803,7 +803,7 @@ Relaunch the container with the `app:backup:create` argument.
803
803
804
804
```bash
805
805
docker run --name redmine -it --rm [OPTIONS] \
806
-
sameersbn/redmine:6.1.1 app:backup:create
806
+
sameersbn/redmine:6.1.2 app:backup:create
807
807
```
808
808
809
809
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.
@@ -834,7 +834,7 @@ Relaunch the container with the `app:backup:restore` argument. Ensure you launch
834
834
835
835
```bash
836
836
docker run --name redmine -it --rm [OPTIONS] \
837
-
sameersbn/redmine:6.1.1 app:backup:restore
837
+
sameersbn/redmine:6.1.2 app:backup:restore
838
838
```
839
839
840
840
A list of existing backups will be displayed. Select a backup you wish to restore.
@@ -843,7 +843,7 @@ To avoid this interaction you can specify the backup filename using the `BACKUP`
@@ -893,7 +893,7 @@ To upgrade to newer redmine releases, simply follow this 4 step upgrade procedur
893
893
- **Step 1**: Update the docker image.
894
894
895
895
```bash
896
-
docker pull sameersbn/redmine:6.1.1
896
+
docker pull sameersbn/redmine:6.1.2
897
897
```
898
898
899
899
- **Step 2**: Stop and remove the currently running image
@@ -915,7 +915,7 @@ Replace `x.x.x` with the version you are upgrading from. For example, if you are
915
915
- **Step 4**: Start the image
916
916
917
917
```bash
918
-
docker run --name=redmine -d [OPTIONS] sameersbn/redmine:6.1.1
918
+
docker run --name=redmine -d [OPTIONS] sameersbn/redmine:6.1.2
919
919
```
920
920
921
921
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