View Source DockerEngineAPI.Model.ContainerConfig (docker_engine_api v1.43.0)
Configuration for a container that is portable between hosts. When used as `ContainerConfig` field in an image, `ContainerConfig` is an optional field containing the configuration of the container that was last committed when creating the image. Previous versions of Docker builder used this field to store build cache, and it is not in active use anymore.
Summary
Types
@type t() :: %DockerEngineAPI.Model.ContainerConfig{ ArgsEscaped: boolean(), AttachStderr: boolean(), AttachStdin: boolean(), AttachStdout: boolean(), Cmd: [String.t()], Domainname: String.t(), Entrypoint: [String.t()], Env: [String.t()], ExposedPorts: %{optional(String.t()) => Object}, Healthcheck: HealthConfig, Hostname: String.t(), Image: String.t(), Labels: %{optional(String.t()) => String.t()}, MacAddress: String.t(), NetworkDisabled: boolean(), OnBuild: [String.t()], OpenStdin: boolean(), Shell: [String.t()], StdinOnce: boolean(), StopSignal: String.t(), StopTimeout: integer(), Tty: boolean(), User: String.t(), Volumes: %{optional(String.t()) => Object}, WorkingDir: String.t() }