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,
103
103
104
104
```bash
105
-
docker pull sameersbn/redmine:3.3.0-3
105
+
docker pull sameersbn/redmine:3.3.0-4
106
106
```
107
107
108
108
Alternately you can build the image yourself.
@@ -139,7 +139,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:
@@ -309,7 +309,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:
@@ -377,7 +377,7 @@ The image can be configured to use an external memcached server. The memcached s
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.
@@ -507,7 +507,7 @@ docker run --name=redmine -d \
@@ -791,7 +791,7 @@ Relaunch the container with the `app:backup:create` argument.
791
791
792
792
```bash
793
793
docker run --name redmine -it --rm [OPTIONS] \
794
-
sameersbn/redmine:3.3.0-3 app:backup:create
794
+
sameersbn/redmine:3.3.0-4 app:backup:create
795
795
```
796
796
797
797
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.
@@ -822,7 +822,7 @@ Relaunch the container with the `app:backup:restore` argument. Ensure you launch
822
822
823
823
```bash
824
824
docker run --name redmine -it --rm [OPTIONS] \
825
-
sameersbn/redmine:3.3.0-3 app:backup:restore
825
+
sameersbn/redmine:3.3.0-4 app:backup:restore
826
826
```
827
827
828
828
A list of existing backups will be displayed. Select a backup you wish to restore.
@@ -831,7 +831,7 @@ To avoid this interaction you can specify the backup filename using the `BACKUP`
0 commit comments