2014-12-29 13:39:42 +00:00
|
|
|
Test with various databases
|
|
|
|
===========================
|
|
|
|
|
|
|
|
MySQL
|
|
|
|
-----
|
|
|
|
|
2015-04-14 08:30:58 +00:00
|
|
|
The simplest way to test with MySQL is to use the official [MySQL docker image](https://registry.hub.docker.com/_/mysql/).
|
2014-12-29 13:39:42 +00:00
|
|
|
|
|
|
|
Start MySQL:
|
|
|
|
|
|
|
|
docker run --name mysql -e MYSQL_DATABASE=keycloak -e MYSQL_USER=keycloak -e MYSQL_PASSWORD=keycloak -e MYSQL_ROOT_PASSWORD=keycloak -d mysql
|
|
|
|
|
|
|
|
Run tests:
|
|
|
|
|
2015-04-14 08:30:58 +00:00
|
|
|
mvn install -Dkeycloak.connectionsJpa.url=jdbc:mysql://`docker inspect --format '{{ .NetworkSettings.IPAddress }}' mysql`/keycloak -Dkeycloak.connectionsJpa.driver=com.mysql.jdbc.Driver -Dkeycloak.connectionsJpa.user=keycloak -Dkeycloak.connectionsJpa.password=keycloak
|
2014-12-29 13:39:42 +00:00
|
|
|
|
|
|
|
Stop MySQl:
|
|
|
|
|
|
|
|
docker rm -f mysql
|
|
|
|
|
|
|
|
|
|
|
|
PostgreSQL
|
|
|
|
----------
|
|
|
|
|
2015-04-14 08:30:58 +00:00
|
|
|
The simplest way to test with PostgreSQL is to use the official [PostgreSQL docker image](https://registry.hub.docker.com/_/postgres/).
|
2014-12-29 13:39:42 +00:00
|
|
|
|
2014-12-30 09:05:27 +00:00
|
|
|
Start PostgreSQL:
|
2014-12-29 13:39:42 +00:00
|
|
|
|
|
|
|
docker run --name postgres -e POSTGRES_DATABASE=keycloak -e POSTGRES_USER=keycloak -e POSTGRES_PASSWORD=keycloak -e POSTGRES_ROOT_PASSWORD=keycloak -d postgres
|
|
|
|
|
|
|
|
Run tests:
|
|
|
|
|
2015-04-14 08:30:58 +00:00
|
|
|
mvn install -Dkeycloak.connectionsJpa.url=jdbc:postgresql://`docker inspect --format '{{ .NetworkSettings.IPAddress }}' postgres`:5432/keycloak -Dkeycloak.connectionsJpa.driver=org.postgresql.Driver -Dkeycloak.connectionsJpa.user=keycloak -Dkeycloak.connectionsJpa.password=keycloak
|
2014-12-29 13:39:42 +00:00
|
|
|
|
2014-12-30 09:05:27 +00:00
|
|
|
Stop PostgreSQL:
|
2014-12-29 13:39:42 +00:00
|
|
|
|
|
|
|
docker rm -f postgres
|
2016-05-04 15:31:46 +00:00
|
|
|
|
|
|
|
MariaDB
|
|
|
|
-------
|
|
|
|
|
|
|
|
The simplest way to test with MariaDB is to use the official [MariaDB docker image](https://registry.hub.docker.com/_/mariadb/).
|
|
|
|
|
|
|
|
Start MariaDB:
|
|
|
|
|
|
|
|
docker run --name mariadb -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=keycloak -e MYSQL_USER=keycloak -e MYSQL_PASSWORD=keycloak -d mariadb:10.1
|
|
|
|
|
|
|
|
Run tests:
|
|
|
|
|
|
|
|
mvn install -Dkeycloak.connectionsJpa.url=jdbc:mariadb://`docker inspect --format '{{ .NetworkSettings.IPAddress }}' mariadb`/keycloak -Dkeycloak.connectionsJpa.driver=org.mariadb.jdbc.Driver -Dkeycloak.connectionsJpa.user=keycloak -Dkeycloak.connectionsJpa.password=keycloak
|
|
|
|
|
|
|
|
Stop MySQl:
|
|
|
|
|
|
|
|
docker rm -f mariadb
|
2014-12-29 13:39:42 +00:00
|
|
|
|