Revert "fix: Let test container tests run with port 6666 to prevent conflicts"

This reverts commit 63023f4f9f.
This commit is contained in:
2025-11-22 09:27:59 +01:00
parent 63023f4f9f
commit b084041d32
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ class TestContainersConfig {
HostConfig().apply { HostConfig().apply {
this.withPortBindings( this.withPortBindings(
PortBinding( PortBinding(
Ports.Binding.bindPort(6666), Ports.Binding.bindPort(5432),
ExposedPort(5432), ExposedPort(5432),
), ),
) )

View File

@@ -5,7 +5,7 @@ spring:
datasource: datasource:
hikari: hikari:
auto-commit: false auto-commit: false
url: jdbc:postgresql://localhost:6666/legalconsenthub url: jdbc:postgresql://localhost:5432/legalconsenthub
username: legalconsenthub username: legalconsenthub
password: legalconsenthub password: legalconsenthub