Files
docker-cli/components/engine/docker
David Calavera 2625f17a24 Avoid setting default truthy values from flags that are not set.
When the value for a configuration option in the file is `false`,
and the default value for a flag is `true`, we should not
take the value from the later as final value for the option,
because the user explicitly set `false`.

This change overrides the default value in the flagSet with
the value in the configuration file so we get the correct
result when we merge the two configurations together.

Signed-off-by: David Calavera <david.calavera@gmail.com>
Upstream-commit: 31cb96dcfaaebe3f807e7c7bf82a48b5995c743b
Component: engine
2016-02-19 18:39:10 -05:00
..
2016-02-01 14:36:40 -05:00
2015-11-05 17:09:57 -05:00
2015-11-15 10:40:01 +01:00
2015-10-08 08:46:21 -04:00

docker.go contains Docker's main function.

This file provides first line CLI argument parsing and environment variable setting.