Hi, I think the 10s timeout for WaitForLog is too short. I had to manually set it with: `->withWait(new WaitForLog( 'PostgreSQL init process complete; ready for start up.', false, 60_000 ))` In testcontainers-java it's 60s if I'm not mistaken. See: [https://github.com/testcontainers/testcontainers-java/blob/main/core/src/main/java/org/testcontainers/containers/wait/strategy/LogMessageWaitStrategy.java](url) And: [https://github.com/testcontainers/testcontainers-java/blob/main/core/src/main/java/org/testcontainers/containers/wait/strategy/AbstractWaitStrategy.java](url)
Hi,
I think the 10s timeout for WaitForLog is too short.
I had to manually set it with:
->withWait(new WaitForLog( 'PostgreSQL init process complete; ready for start up.', false, 60_000 ))In testcontainers-java it's 60s if I'm not mistaken.
See:
https://github.com/testcontainers/testcontainers-java/blob/main/core/src/main/java/org/testcontainers/containers/wait/strategy/LogMessageWaitStrategy.java
And:
https://github.com/testcontainers/testcontainers-java/blob/main/core/src/main/java/org/testcontainers/containers/wait/strategy/AbstractWaitStrategy.java