Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
We know seeding (w/ JDO) works for H2 in memory db, but it was not yet tested against other DB scenarios.
Quick setup for testing against a postgres docker image:
docker run --name postgresql-container -p 5432:5432 -e POSTGRES_PASSWORD=postgres -d postgres:12
spring.datasource.url=jdbc:postgresql://localhost:5432/db-name spring.datasource.driver-class-name=org.postgresql.Driver spring.datasource.username=postgres spring.datasource.password=postgres
pgAdmin 4 via docker
docker run --rm -p 5050:5050 thajeztah/pgadmin4