0

Is it possible to use a sybase database with Testcontainers to do the integration testing with spring boot?

I can not install docker on my local machine.

Chandresh Mishra
  • 1,081
  • 3
  • 24
  • 45

1 Answers1

1

Sadly for your situation, you need docker to use Testcontainers. https://www.testcontainers.org/supported_docker_environment/

I would recommend to use maybe an H2 database or do a test config to use another "real" database when test are executed.

Have fun!

Schisme
  • 443
  • 2
  • 6