1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
package main
import (
"strconv"
"time"
"github.com/urfave/cli"
"github.com/mudler/docker-companion/api"
jww "github.com/spf13/jwalterweatherman"
)
func unpackImage(c *cli.Context) error {
var sourceImage string
var output string
if c.NArg() == 2 {
sourceImage = c.Args()[0]
output = c.Args()[1]
} else {
return cli.NewExitError("This command requires to argument: source-image output-folder(absolute)", 86)
}
client, err := api.NewDocker()
if err != nil {
return cli.NewExitError("could not connect to the Docker daemon", 87)
}
if c.GlobalBool("pull") == true {
api.PullImage(client, sourceImage)
}
if c.Bool("squash") == true {
jww.INFO.Println("Squashing and unpacking " + sourceImage + " in " + output)
time := strconv.Itoa(int(makeTimestamp()))
api.Squash(client, sourceImage, sourceImage+"-tmpsquashed"+time)
sourceImage = sourceImage + "-tmpsquashed" + time
defer func() {
jww.INFO.Println("Removing squashed image " + sourceImage)
client.RemoveImage(sourceImage)
}()
}
jww.INFO.Println("Unpacking " + sourceImage + " in " + output)
err = api.Unpack(client, sourceImage, output, c.GlobalBool("fatal"))
if err == nil {
jww.INFO.Println("Done")
}
return err
}
func makeTimestamp() int64 {
return time.Now().UnixNano() / (int64(time.Millisecond) / int64(time.Nanosecond))
}
|