Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Taskana support these databases:

DatabaseVersion
DB210.5DB211.1.4.4
POSTGRES10 latest
H2-


By default the unit tests will run with the H2 database. If you want to run the tests with a different database you have to create theĀ taskanaUnitTest.properties file in your home directory.

...

Info

In the folderĀ ci you find a prepare_db script which already does all of the listed below. (bash for *nix users and batch for windows users).

...

.

...

Code Block
languagebash
titlestart command
docker run -d -p 50100:50000 --name taskana-db2_10_5 taskana/db2:10.5 -d
Code Block
titletaskanaUnitTest.properties
jdbcDriver=com.ibm.db2.jcc.DB2Driver jdbcUrl=jdbc:db2://localhost:50100/tskdb dbUserName=db2inst1 dbPassword=db2inst1-pwd schemaName=TASKANA

DB2 11.1

Code Block
languagebash
titlestart command
 docker run -d -p 50101:50000 --name taskana-db2_11_1 taskana/db2:11.1 -d

...