ContainerConfig constructor
const
ContainerConfig({
- String? hostname,
- String? domainname,
- String? user,
- bool? attachStdin,
- bool? attachStdout,
- bool? attachStderr,
- Map<
String, dynamic> ? exposedPorts, - bool? tty,
- bool? openStdin,
- bool? stdinOnce,
- List<
String> ? env, - List<
String> ? cmd, - ContainerHealthcheck? healthcheck,
- bool? argsEscaped,
- String? image,
- Map<
String, dynamic> ? volumes, - String? workingDir,
- List<
String> ? entrypoint, - bool? networkDisabled,
- String? macAddress,
- List<
String> ? onBuild, - Map<
String, String> ? labels, - String? stopSignal,
- int? stopTimeout,
- 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,
});