Container Create Request
Parameters
The hostname to use for the container, as a valid RFC 1123 hostname.
The domain name to use for the container.
Commands run as this user inside the container. If omitted, commands run as the user specified in the image the container was started from. Can be either user-name or UID, and optional group-name or GID, separated by a colon (<user-name|UID>[<:group-name|GID>]).
Whether to attach to stdin.
Whether to attach to stdout.
Whether to attach to stderr.
An object mapping ports to an empty object in the form: {\"<port>/<tcp|udp|sctp>\": {}}
Attach standard streams to a TTY, including stdin if it is not closed.
Open stdin
Close stdin after one attached client disconnects
A list of environment variables to set inside the container in the form [\"VAR=value\", ...]. A variable without = is removed from the environment, rather than to have an empty value.
Command to run specified as a string or an array of strings.
Command is already escaped (Windows only)
The name (or reference) of the image to use when creating the container, or which was used when the container was created.
An object mapping mount point paths inside the container to empty objects.
The working directory for commands to run in.
The entry point for the container as a string or an array of strings. If the array consists of exactly one empty string ([\"\"]) then the entry point is reset to system default (i.e., the entry point used by docker when there is no ENTRYPOINT instruction in the Dockerfile).
Disable networking for the container.
MAC address of the container. Deprecated: this field is deprecated in API v1.44 and up. Use EndpointSettings.MacAddress instead.
ONBUILD metadata that were defined in the image's Dockerfile.
User-defined key/value metadata.
Signal to stop a container as a string or unsigned integer.
Timeout to stop a container in seconds.
Shell for when RUN, CMD, and ENTRYPOINT uses a shell.