moby--moby/cli
Sebastiaan van Stijn 0ea7b143b0
Don't use AutoRemove on older daemons
Docker 1.13 moves the `--rm` flag to the daemon,
through an AutoRemove option in HostConfig.

When using API 1.24 and under, AutoRemove should not be
used, even if the daemon is version 1.13 or above and
"supports" this feature.

This patch fixes a situation where an 1.13 client,
talking to an 1.13 daemon, but using the 1.24 API
version, still set the AutoRemove property.

As a result, both the client _and_ the daemon
were attempting to remove the container, resulting
in an error:

    ERRO[0000] error removing container: Error response from daemon:
    removal of container ce0976ad22495c7cbe9487752ea32721a282164862db036b2f3377bd07461c3a
    is already in progress

In addition, the validation of conflicting options
is moved from `docker run` to `opts.parse()`, so
that conflicting options are also detected when
running `docker create` and `docker start` separately.

To resolve the issue, the `AutoRemove` option is now
always set to `false` both by the client and the
daemon, if API version 1.24 or under is used.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-01-15 01:59:57 +01:00
..
command Don't use AutoRemove on older daemons 2017-01-15 01:59:57 +01:00
compose Add error checking for hostPort range 2017-01-13 18:05:51 -05:00
config Move package cliconfig to cli/config 2016-12-25 20:31:52 +01:00
debug Move debug functions to cli/debug package 2016-12-12 09:33:58 +01:00
flags Trim quotes from TLS flags. 2017-01-03 15:58:41 -05:00
internal/test Add some unit tests to the node and swarm cli code 2017-01-09 18:30:15 +01:00
trust Merge pull request #29313 from vdemeester/move-cli-config 2016-12-28 09:05:51 -08:00
cobra.go
error.go
required.go