mirror of https://github.com/docker/cli.git
Windows: Support credential specs
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
e9cb71acbb
commit
78cc1b2b6a
|
@ -37,6 +37,7 @@ Options:
|
||||||
--pull Always attempt to pull a newer version of the image
|
--pull Always attempt to pull a newer version of the image
|
||||||
-q, --quiet Suppress the build output and print image ID on success
|
-q, --quiet Suppress the build output and print image ID on success
|
||||||
--rm Remove intermediate containers after a successful build (default true)
|
--rm Remove intermediate containers after a successful build (default true)
|
||||||
|
--security-opt value Security Options (default [])
|
||||||
--shm-size string Size of /dev/shm, default value is 64MB.
|
--shm-size string Size of /dev/shm, default value is 64MB.
|
||||||
The format is `<number><unit>`. `number` must be greater than `0`.
|
The format is `<number><unit>`. `number` must be greater than `0`.
|
||||||
Unit is optional and can be `b` (bytes), `k` (kilobytes), `m` (megabytes),
|
Unit is optional and can be `b` (bytes), `k` (kilobytes), `m` (megabytes),
|
||||||
|
@ -397,6 +398,12 @@ Dockerfile are echoed during the build process.
|
||||||
For detailed information on using `ARG` and `ENV` instructions, see the
|
For detailed information on using `ARG` and `ENV` instructions, see the
|
||||||
[Dockerfile reference](../builder.md).
|
[Dockerfile reference](../builder.md).
|
||||||
|
|
||||||
|
### Optional security options (--security-opt)
|
||||||
|
|
||||||
|
This flag is only supported on a daemon running on Windows, and only supports
|
||||||
|
the `credentialspec` option. The `credentialspec` must be in the format
|
||||||
|
`file://spec.txt` or `registry://keyname`.
|
||||||
|
|
||||||
### Specify isolation technology for container (--isolation)
|
### Specify isolation technology for container (--isolation)
|
||||||
|
|
||||||
This option is useful in situations where you are running Docker containers on
|
This option is useful in situations where you are running Docker containers on
|
||||||
|
|
|
@ -614,6 +614,11 @@ The `--stop-signal` flag sets the system call signal that will be sent to the co
|
||||||
This signal can be a valid unsigned number that matches a position in the kernel's syscall table, for instance 9,
|
This signal can be a valid unsigned number that matches a position in the kernel's syscall table, for instance 9,
|
||||||
or a signal name in the format SIGNAME, for instance SIGKILL.
|
or a signal name in the format SIGNAME, for instance SIGKILL.
|
||||||
|
|
||||||
|
### Optional security options (--security-opt)
|
||||||
|
|
||||||
|
On Windows, this flag can be used to specify the `credentialspec` option.
|
||||||
|
The `credentialspec` must be in the format `file://spec.txt` or `registry://keyname`.
|
||||||
|
|
||||||
### Specify isolation technology for container (--isolation)
|
### Specify isolation technology for container (--isolation)
|
||||||
|
|
||||||
This option is useful in situations where you are running Docker containers on
|
This option is useful in situations where you are running Docker containers on
|
||||||
|
|
Loading…
Reference in New Issue