2016-09-08 13:11:39 -04:00
|
|
|
package image
|
|
|
|
|
|
|
|
import (
|
2018-05-03 21:02:44 -04:00
|
|
|
"context"
|
2016-09-08 13:11:39 -04:00
|
|
|
"io"
|
|
|
|
|
2017-04-17 18:07:56 -04:00
|
|
|
"github.com/docker/cli/cli"
|
|
|
|
"github.com/docker/cli/cli/command"
|
2022-05-12 07:18:48 -04:00
|
|
|
"github.com/docker/cli/cli/command/completion"
|
2017-03-27 21:21:59 -04:00
|
|
|
"github.com/pkg/errors"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type saveOptions struct {
|
|
|
|
images []string
|
|
|
|
output string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSaveCommand creates a new `docker save` command
|
2017-03-30 20:21:14 -04:00
|
|
|
func NewSaveCommand(dockerCli command.Cli) *cobra.Command {
|
2016-09-08 13:11:39 -04:00
|
|
|
var opts saveOptions
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "save [OPTIONS] IMAGE [IMAGE...]",
|
|
|
|
Short: "Save one or more images to a tar archive (streamed to STDOUT by default)",
|
|
|
|
Args: cli.RequiresMinArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts.images = args
|
2018-06-14 09:48:21 -04:00
|
|
|
return RunSave(dockerCli, opts)
|
2016-09-08 13:11:39 -04:00
|
|
|
},
|
cli: use custom annotation for aliases
Cobra allows for aliases to be defined for a command, but only allows these
to be defined at the same level (for example, `docker image ls` as alias for
`docker image list`). Our CLI has some commands that are available both as a
top-level shorthand as well as `docker <object> <verb>` subcommands. For example,
`docker ps` is a shorthand for `docker container ps` / `docker container ls`.
This patch introduces a custom "aliases" annotation that can be used to print
all available aliases for a command. While this requires these aliases to be
defined manually, in practice the list of aliases rarely changes, so maintenance
should be minimal.
As a convention, we could consider the first command in this list to be the
canonical command, so that we can use this information to add redirects in
our documentation in future.
Before this patch:
docker images --help
Usage: docker images [OPTIONS] [REPOSITORY[:TAG]]
List images
Options:
-a, --all Show all images (default hides intermediate images)
...
With this patch:
docker images --help
Usage: docker images [OPTIONS] [REPOSITORY[:TAG]]
List images
Aliases:
docker image ls, docker image list, docker images
Options:
-a, --all Show all images (default hides intermediate images)
...
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-06-28 04:52:25 -04:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"aliases": "docker image save, docker save",
|
|
|
|
},
|
2022-05-12 07:18:48 -04:00
|
|
|
ValidArgsFunction: completion.ImageNames(dockerCli),
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
|
|
|
|
|
|
|
flags.StringVarP(&opts.output, "output", "o", "", "Write to a file, instead of STDOUT")
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2018-06-14 09:48:21 -04:00
|
|
|
// RunSave performs a save against the engine based on the specified options
|
|
|
|
func RunSave(dockerCli command.Cli, opts saveOptions) error {
|
2016-09-08 13:11:39 -04:00
|
|
|
if opts.output == "" && dockerCli.Out().IsTerminal() {
|
2017-05-02 15:35:25 -04:00
|
|
|
return errors.New("cowardly refusing to save to a terminal. Use the -o flag or redirect")
|
2016-09-08 13:11:39 -04:00
|
|
|
}
|
|
|
|
|
2019-02-07 03:17:35 -05:00
|
|
|
if err := command.ValidateOutputPath(opts.output); err != nil {
|
2017-07-26 15:11:02 -04:00
|
|
|
return errors.Wrap(err, "failed to save image")
|
|
|
|
}
|
|
|
|
|
2016-09-08 13:11:39 -04:00
|
|
|
responseBody, err := dockerCli.Client().ImageSave(context.Background(), opts.images)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer responseBody.Close()
|
|
|
|
|
|
|
|
if opts.output == "" {
|
|
|
|
_, err := io.Copy(dockerCli.Out(), responseBody)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return command.CopyToFile(opts.output, responseBody)
|
|
|
|
}
|