APITestConfigDockerPostgreSQL constructor
APITestConfigDockerPostgreSQL(})
Implementation
APITestConfigDockerPostgreSQL(
Map<String, dynamic> apiConfig, {
DockerHost? dockerHost,
String? containerNamePrefix,
this.postgresPort,
this.maxConnections,
this.logStatement,
this.version = 'latest',
super.cleanContainer,
}) : super(
dockerHost ?? DockerHostLocal(),
'PostgreSQL',
apiConfig,
containerNamePrefix: containerNamePrefix,
) {
DBPostgreSQLAdapter.boot();
}