Name | Type | Description | Notes |
---|---|---|---|
argsEscaped | Boolean | ArgsEscaped Deprecated: This field is present only for legacy compatibility with Docker and should not be used by new image builders. It is used by Docker for Windows images to indicate that the `Entrypoint` or `Cmd` or both, contains only a single element array, that is a pre-escaped, and combined into a single string `CommandLine`. If `true` the value in `Entrypoint` or `Cmd` should be used as-is to avoid double escaping. opencontainers/image-spec#892 | [optional] |
cmd | List<String> | Cmd defines the default arguments to the entrypoint of the container. | [optional] |
entrypoint | List<String> | Entrypoint defines a list of arguments to use as the command to execute when the container starts. | [optional] |
env | List<String> | Env is a list of environment variables to be used in a container. | [optional] |
exposedPorts | Map<String, Object> | ExposedPorts a set of ports to expose from a container running this image. | [optional] |
labels | Map<String, String> | Labels contains arbitrary metadata for the container. | [optional] |
stopSignal | String | StopSignal contains the system call signal that will be sent to the container to exit. | [optional] |
user | String | User defines the username or UID which the process in the container should run as. | [optional] |
volumes | Map<String, Object> | Volumes is a set of directories describing where the process is likely write data specific to a container instance. | [optional] |
workingDir | String | WorkingDir sets the current working directory of the entrypoint process in the container. | [optional] |
- Serializable