containers/postgres
library
Classes
-
DockerProcess
-
Access wrapper to interact with a docker container as a process.
Functions
-
startPostgres({required String name, required String version, String imageName = 'postgres', String? network, String? pgUser, String pgPassword = 'postgres', String? pgDatabase, int pgPort = 5432, bool? cleanup, String? postgresqlConfPath, String? pgHbaConfPath, List<String>? configurations, String? timeZone})
→ Future<DockerProcess>
-
Starts a postgres container with the given
name
using the given
imageName
and version
.