View Source DockerEngineAPI.Model.ContainerConfig (testcontainers v1.11.6)
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() | nil, AttachStderr: boolean() | nil, AttachStdin: boolean() | nil, AttachStdout: boolean() | nil, Cmd: [String.t()] | nil, Domainname: String.t() | nil, Entrypoint: [String.t()] | nil, Env: [String.t()] | nil, ExposedPorts: %{optional(String.t()) => map()} | nil, Healthcheck: DockerEngineAPI.Model.HealthConfig.t() | nil, Hostname: String.t() | nil, Image: String.t() | nil, Labels: %{optional(String.t()) => String.t()} | nil, MacAddress: String.t() | nil, NetworkDisabled: boolean() | nil, OnBuild: [String.t()] | nil, OpenStdin: boolean() | nil, Shell: [String.t()] | nil, StdinOnce: boolean() | nil, StopSignal: String.t() | nil, StopTimeout: integer() | nil, Tty: boolean() | nil, User: String.t() | nil, Volumes: %{optional(String.t()) => map()} | nil, WorkingDir: String.t() | nil }