mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Align with other cli descriptions
Signed-off-by: yupeng <yu.peng36@zte.com.cn>
This commit is contained in:
parent
17aaa0890a
commit
06f1602374
3 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ func NewLoginCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "login [OPTIONS] [SERVER]",
|
Use: "login [OPTIONS] [SERVER]",
|
||||||
Short: "Log in to a Docker registry.",
|
Short: "Log in to a Docker registry",
|
||||||
Long: "Log in to a Docker registry.\nIf no server is specified, the default is defined by the daemon.",
|
Long: "Log in to a Docker registry.\nIf no server is specified, the default is defined by the daemon.",
|
||||||
Args: cli.RequiresMaxArgs(1),
|
Args: cli.RequiresMaxArgs(1),
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
|
|
@ -15,7 +15,7 @@ import (
|
||||||
func NewLogoutCommand(dockerCli *command.DockerCli) *cobra.Command {
|
func NewLogoutCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "logout [SERVER]",
|
Use: "logout [SERVER]",
|
||||||
Short: "Log out from a Docker registry.",
|
Short: "Log out from a Docker registry",
|
||||||
Long: "Log out from a Docker registry.\nIf no server is specified, the default is defined by the daemon.",
|
Long: "Log out from a Docker registry.\nIf no server is specified, the default is defined by the daemon.",
|
||||||
Args: cli.RequiresMaxArgs(1),
|
Args: cli.RequiresMaxArgs(1),
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
|
|
@ -23,7 +23,7 @@ func newDockerCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "docker [OPTIONS] COMMAND [arg...]",
|
Use: "docker [OPTIONS] COMMAND [arg...]",
|
||||||
Short: "A self-sufficient runtime for containers.",
|
Short: "A self-sufficient runtime for containers",
|
||||||
SilenceUsage: true,
|
SilenceUsage: true,
|
||||||
SilenceErrors: true,
|
SilenceErrors: true,
|
||||||
TraverseChildren: true,
|
TraverseChildren: true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue