ContainerConfig constructor

const ContainerConfig({
  1. String? hostname,
  2. String? domainname,
  3. String? user,
  4. bool? attachStdin,
  5. bool? attachStdout,
  6. bool? attachStderr,
  7. Map<String, dynamic>? exposedPorts,
  8. bool? tty,
  9. bool? openStdin,
  10. bool? stdinOnce,
  11. List<String>? env,
  12. List<String>? cmd,
  13. ContainerHealthcheck? healthcheck,
  14. bool? argsEscaped,
  15. String? image,
  16. Map<String, dynamic>? volumes,
  17. String? workingDir,
  18. List<String>? entrypoint,
  19. bool? networkDisabled,
  20. String? macAddress,
  21. List<String>? onBuild,
  22. Map<String, String>? labels,
  23. String? stopSignal,
  24. int? stopTimeout,
  25. List<String>? shell,
})

Creates a ContainerConfig with the given fields.

Implementation

const ContainerConfig({
  this.hostname,
  this.domainname,
  this.user,
  this.attachStdin,
  this.attachStdout,
  this.attachStderr,
  this.exposedPorts,
  this.tty,
  this.openStdin,
  this.stdinOnce,
  this.env,
  this.cmd,
  this.healthcheck,
  this.argsEscaped,
  this.image,
  this.volumes,
  this.workingDir,
  this.entrypoint,
  this.networkDisabled,
  this.macAddress,
  this.onBuild,
  this.labels,
  this.stopSignal,
  this.stopTimeout,
  this.shell,
});