Przeglądaj źródła

Merge pull request #3904 from alexlarsson/fix-docker-commit-output

Fix docker commit output
Michael Crosby 11 lat temu
rodzic
commit
6863145148
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      commands.go

+ 1 - 1
commands.go

@@ -1472,7 +1472,7 @@ func (cli *DockerCli) CmdCommit(args ...string) error {
 		return err
 	}
 
-	fmt.Fprintf(cli.out, "%s\n", env.Get("ID"))
+	fmt.Fprintf(cli.out, "%s\n", env.Get("Id"))
 	return nil
 }