APITestConfigDockerMySQL constructor

APITestConfigDockerMySQL(
  1. Map<String, dynamic> apiConfig, {
  2. DockerHost? dockerHost,
  3. String? containerNamePrefix,
  4. bool forceNativePasswordAuthentication = true,
  5. String version = 'latest',
  6. bool cleanContainer = true,
})

Implementation

APITestConfigDockerMySQL(
  Map<String, dynamic> apiConfig, {
  DockerHost? dockerHost,
  String? containerNamePrefix,
  this.forceNativePasswordAuthentication = true,
  this.version = 'latest',
  super.cleanContainer,
}) : super(
       dockerHost ?? DockerHostLocal(),
       'MySQL',
       apiConfig,
       containerNamePrefix: containerNamePrefix,
     ) {
  DBMySQLAdapter.boot();
}