...
Select one of the database engines listed below and start an instance with the given docker run command.
Configure UM to use new database
Create a file env/devel/cmsbs-conf/conf.d/database.properties
below your Kickstarter directory and paste the given UM configuration snippet according to the database chosen.
Create the directory cmsbs/WEB-INF/lib/
below your Kickstarter directory and add the following line to your build.gradle
file:
Codeblock | ||
---|---|---|
| ||
pinuts.extraDist = [ 'cmsbs/WEB-INF/lib' ] |
Download the appropriate JDBC driver and copy the JAR file to the directory cmsbs/WEB-INF/lib/
your just created.
Recreate and run docker image using the freshly create created database:
Codeblock |
---|
gradle dockerimage
docker run --rm -p 8080:8080 myproject:devel |
...