79216828

Date: 2024-11-22 23:28:48
Score: 0.5
Natty:
Report link

Problem solved!

the problem was not using the correct name in my flyway.conf

flyway.url=jdbc:sqlserver://localhost:1433;databaseName=${DB_NAME};TrustServerCertificate=True;

this configuration was incorrect, and instead should have been:

flyway.url=jdbc:sqlserver://database:1433;databaseName=${DB_NAME};TrustServerCertificate=True;

I needed to use database from the docker-compose because thats what the database configuration was configured to use.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Marqueone