Skip to content
Merged
Show file tree
Hide file tree
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 @@ -125,7 +125,7 @@ export class PostgresDBRunner extends BaseDbRunner {
}

async containerLazyInit() {
const version = process.env.TEST_PGSQL_VERSION || '9.6.8';
const version = process.env.TEST_PGSQL_VERSION || '12.22';

return new GenericContainer(`postgres:${version}`)
.withEnvironment({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { DbRunnerAbstract, DBRunnerContainerOptions } from './db-runner.abstract

export class PostgresDBRunner extends DbRunnerAbstract {
public static startContainer(options: DBRunnerContainerOptions) {
const version = process.env.TEST_PGSQL_VERSION || options.version || '9.6.8';
const version = process.env.TEST_PGSQL_VERSION || options.version || '12.22';

const container = new GenericContainer(`postgres:${version}`)
.withEnvironment({
Expand Down
Loading