Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public sealed class PostgreSqlContainerFixture : IAsyncDisposable, IAsyncInitializer
{
private readonly PostgreSqlContainer _container = new PostgreSqlBuilder(
/*dockerimage*/"postgres:18.4"
/*dockerimage*/"postgres:19beta1-trixie"
)
.WithLogger(NullLogger.Instance)
.WithCommand("-c", "max_connections=500") // Raised for parallel integration tests; each test creates its own unique database/pool.
Expand Down
Loading