Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

It is not always necessary to manually install the UM with the described installation method. In some cases it makes sense to run the UM in a docker container:

  • If you already have a dockerized application infrastructure

  • To develop CSE based applications in a local UM instance

Creating a customized docker image

...

Codeblock
docker run --rm -p 8080:8080-network host myproject:devel

Go to http://localhost:8080/cmsbs and login as admin / admin.

...

Codeblock
gradle dockerimage

docker run --rm --pnetwork 8080:8080host myproject:devel

The UM instance running on http://localhost:8080/cmsbs should now populate and use the new database.

...

Codeblock
cmsbs.database.url      = "jdbc:postgresql://localhostpostgres:5432/"
cmsbs.database.user     = "postgres"
cmsbs.database.password = "secretmysecretpassword"

JDBC Driver: https://jdbc.postgresql.org/download.html

...