mirror of
https://github.com/containers/skopeo.git
synced 2026-07-13 20:52:53 +00:00
Use Errorf() from 'errors' rather than 'fmt' to help with stack traces. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com> Closes: #130 Approved by: rhatdan
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var (
|
|
mountDescription = "Mounts a working container's root filesystem for manipulation"
|
|
mountFlags = []cli.Flag{
|
|
cli.BoolFlag{
|
|
Name: "notruncate",
|
|
Usage: "do not truncate output",
|
|
},
|
|
}
|
|
mountCommand = cli.Command{
|
|
Name: "mount",
|
|
Usage: "Mount a working container's root filesystem",
|
|
Description: mountDescription,
|
|
Action: mountCmd,
|
|
ArgsUsage: "CONTAINER-NAME-OR-ID",
|
|
Flags: mountFlags,
|
|
}
|
|
)
|
|
|
|
func mountCmd(c *cli.Context) error {
|
|
args := c.Args()
|
|
if len(args) > 1 {
|
|
return errors.Errorf("too many arguments specified")
|
|
}
|
|
|
|
store, err := getStore(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
truncate := true
|
|
if c.IsSet("notruncate") {
|
|
truncate = !c.Bool("notruncate")
|
|
}
|
|
|
|
if len(args) == 1 {
|
|
name := args[0]
|
|
builder, err := openBuilder(store, name)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error reading build container %q", name)
|
|
}
|
|
mountPoint, err := builder.Mount("")
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error mounting %q container %q", name, builder.Container)
|
|
}
|
|
fmt.Printf("%s\n", mountPoint)
|
|
} else {
|
|
builders, err := openBuilders(store)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error reading build containers")
|
|
}
|
|
for _, builder := range builders {
|
|
if builder.MountPoint == "" {
|
|
continue
|
|
}
|
|
if truncate {
|
|
fmt.Printf("%-12.12s %s\n", builder.ContainerID, builder.MountPoint)
|
|
} else {
|
|
fmt.Printf("%-64s %s\n", builder.ContainerID, builder.MountPoint)
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|