mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
96ce3a194a
This patch creates a new cli package that allows to combine both client and daemon commands (there is only one daemon command: docker daemon). The `-d` and `--daemon` top-level flags are deprecated and a special message is added to prompt the user to use `docker daemon`. Providing top-level daemon-specific flags for client commands result in an error message prompting the user to use `docker daemon`. This patch does not break any old but correct usages. This also makes `-d` and `--daemon` flags, as well as the `daemon` command illegal in client-only binaries. Signed-off-by: Tibor Vass <tibor@docker.com>
38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
package client
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
Cli "github.com/docker/docker/cli"
|
|
flag "github.com/docker/docker/pkg/mflag"
|
|
"github.com/docker/docker/registry"
|
|
)
|
|
|
|
// CmdLogout logs a user out from a Docker registry.
|
|
//
|
|
// If no server is specified, the user will be logged out from the registry's index server.
|
|
//
|
|
// Usage: docker logout [SERVER]
|
|
func (cli *DockerCli) CmdLogout(args ...string) error {
|
|
cmd := Cli.Subcmd("logout", []string{"[SERVER]"}, "Log out from a Docker registry, if no server is\nspecified \""+registry.INDEXSERVER+"\" is the default.", true)
|
|
cmd.Require(flag.Max, 1)
|
|
|
|
cmd.ParseFlags(args, true)
|
|
|
|
serverAddress := registry.INDEXSERVER
|
|
if len(cmd.Args()) > 0 {
|
|
serverAddress = cmd.Arg(0)
|
|
}
|
|
|
|
if _, ok := cli.configFile.AuthConfigs[serverAddress]; !ok {
|
|
fmt.Fprintf(cli.out, "Not logged in to %s\n", serverAddress)
|
|
} else {
|
|
fmt.Fprintf(cli.out, "Remove login credentials for %s\n", serverAddress)
|
|
delete(cli.configFile.AuthConfigs, serverAddress)
|
|
|
|
if err := cli.configFile.Save(); err != nil {
|
|
return fmt.Errorf("Failed to save docker config: %v", err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|