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
This image exposes the 8000 port at which Silverpeas listens and this port of the container is here mapped to the 8080 port of the host.
57
57
It is recommended to mount the volumes `/opt/silverpeas/log` and `/opt/silverpeas/data` from the container. Indeed, the first volume contains the log files produced by the Silverpeas application whereas the second volume contains all the data that are managed by the users in Silverpeas. So, you can easily have a glance at the Silverpeas activity and you can switch to the next version of Silverpeas without losing any data. (Using a [Data Volume Container][data-volume] to map `/opt/silverpeas/log` and `/opt/silverpeas/data` is a better solution.)
@@ -120,7 +120,7 @@ Then to mount the volumes in the Silverpeas container:
120
120
$ docker run --name silverpeas -p 8080:8000 -d \
121
121
--link postgresql:database \
122
122
--volumes-from silverpeas-store \
123
-
silverpeas:6.0
123
+
silverpeas/silverpeas:6.0
124
124
```
125
125
126
126
If you have to customize the settings of Silverpeas or add, for example, a new database definition in Wildfly, then specify these settings with the Data Volume Container:
0 commit comments