mirror of https://github.com/docker/cli.git
Make --tlsverify enable tls regardless of value specified
I also needed to add a mflag.IsSet() function that allows you to check to see if a certain flag was actually specified on the cmd line. Per #9221 - also tweaked the docs to fix a typo. Closes #9221 Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
parent
440a18bb50
commit
d9382df2b3
|
@ -84,7 +84,7 @@ expect an integer, and they can only be specified once.
|
||||||
-s, --storage-driver="" Force the Docker runtime to use a specific storage driver
|
-s, --storage-driver="" Force the Docker runtime to use a specific storage driver
|
||||||
--selinux-enabled=false Enable selinux support. SELinux does not presently support the BTRFS storage driver
|
--selinux-enabled=false Enable selinux support. SELinux does not presently support the BTRFS storage driver
|
||||||
--storage-opt=[] Set storage driver options
|
--storage-opt=[] Set storage driver options
|
||||||
--tls=false Use TLS; implied by --tlsverify=true
|
--tls=false Use TLS; implied by --tlsverify flag
|
||||||
--tlscacert="/home/sven/.docker/ca.pem" Trust only remotes providing a certificate signed by the CA given here
|
--tlscacert="/home/sven/.docker/ca.pem" Trust only remotes providing a certificate signed by the CA given here
|
||||||
--tlscert="/home/sven/.docker/cert.pem" Path to TLS certificate file
|
--tlscert="/home/sven/.docker/cert.pem" Path to TLS certificate file
|
||||||
--tlskey="/home/sven/.docker/key.pem" Path to TLS key file
|
--tlskey="/home/sven/.docker/key.pem" Path to TLS key file
|
||||||
|
|
Loading…
Reference in New Issue