testcontainers-postgresql 0.2 → 0.2.0.1
raw patch · 2 files changed
+4/−4 lines, 2 files
Files
- README.md +3/−3
- testcontainers-postgresql.cabal +1/−1
README.md view
@@ -22,9 +22,9 @@ main :: IO () main = do let config = Config- { forwardLogs = True- , distro = Distro16 -- PostgreSQL 16- , auth = TrustAuth -- Trust-based authentication+ { tagName = "postgres:16" -- PostgreSQL 16.+ , auth = TrustAuth -- Authentication method that allows connections without a password.+ , forwardLogs = True -- Forward container logs to console. Useful for debugging. } run config $ \(host, port) -> do
testcontainers-postgresql.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: testcontainers-postgresql-version: 0.2+version: 0.2.0.1 category: PostgreSQL, Codecs synopsis: Testcontainers integration for PostgreSQL homepage: https://github.com/nikita-volkov/testcontainers-postgresql