Image Config
Configuration of the image. These fields are used as defaults when starting a container from the image.
Parameters
The user that commands are run as inside the container.
An object mapping ports to an empty object in the form: {\"<port>/<tcp|udp|sctp>\": {}}
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)
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).
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.
Shell for when RUN, CMD, and ENTRYPOINT uses a shell.