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
Copy file name to clipboardExpand all lines: README.md
+14-5Lines changed: 14 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ To create an image of the latest version of Silverpeas 6:
14
14
```
15
15
$ ./build.sh
16
16
```
17
-
this will build an image containing the latest SNAPSHOT version of Silverpeas and the latest version of Wildfly supported by Silverpeas, with the tag silverpeas-test:latest.
17
+
this will build an image containing the latest SNAPSHOT version of Silverpeas and the latest version of Wildfly supported by Silverpeas, with the tag `silverpeas/silverpeas-test:latest`.
18
18
19
19
Otherwise, to create an image of a given version of Silverpeas 6, you have to specify as argument both the exact version of Silverpeas and of Wildfly used by this version:
this will configure Silverpeas by settings its default locale to English.
44
+
39
45
### Keep data out of the container
40
46
41
47
By default, the data are stored into the container and then they can be lost once the container removed.
42
48
To share the data with others containers running Silverpeas or to keep them out of a container, you can mount the volumes `/opt/silverpeas/data` and `/opt/silverpeas/h2` on the host.
43
-
You can also mount the volume `/opt/silverpeas/log` in order to glance at the Silverpeas activity through the logs files.
49
+
You can also mount the volume `/opt/silverpeas/log` in order to glance at the logs.
44
50
For example:
45
51
```
46
52
$ docker run --name silverpeas-test -p 8080:8000 -d \
In the case you whish to set some specific configuration parameters in the global Silverpeas configuration file `config.properties`, set them into a `custom_config.properties` configuration file and then mount it as `/opt/silverpeas/configuration/custom_config.properties` in the container.
56
-
For example, to set the SMTP properties to receive notifications by email, in a `custom_config.properties` file:
61
+
In the case you wish to set some specific configuration parameters in the global Silverpeas configuration file `config.properties`, set them into a `custom_config.properties` configuration file on the host and then mount it as `/opt/silverpeas/configuration/custom_config.properties` in the container.
62
+
For example, to set the SMTP properties to receive email notifications, in a `custom_config.properties` file:
0 commit comments