I use Testcontainers with Bitnami PostgreSql docker image for integration tests. Container always crushes after when I start run tests. I checked the container logs and saw these messages. What I can do with this?
public static class PostgreSqlSetup
{
public static PostgreSqlContainer CreateContainer()
{
var container = new PostgreSqlBuilder()
.WithImage("bitnami/postgresql:15.3.0")
.WithUsername("postgres")
.WithPassword("postgres")
.Build();
return container;
}
}