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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
package api
// This part is an extract from https://github.com/jwilder/docker-squash/
import (
"fmt"
"os"
jww "github.com/spf13/jwalterweatherman"
"os/exec"
)
type ExportedImage struct {
Path string
JsonPath string
VersionPath string
LayerTarPath string
LayerDirPath string
}
func (e *ExportedImage) CreateDirs() error {
return os.MkdirAll(e.Path, 0755)
}
func (e *ExportedImage) TarLayer() error {
cwd, err := os.Getwd()
if err != nil {
return err
}
err = os.Chdir(e.LayerDirPath)
if err != nil {
return err
}
defer os.Chdir(cwd)
cmd := exec.Command("sudo", "/bin/sh", "-c", fmt.Sprintf("%s cvf ../layer.tar ./", TarCmd))
out, err := cmd.CombinedOutput()
if err != nil {
jww.INFO.Println(out)
return err
}
return nil
}
func (e *ExportedImage) RemoveLayerDir() error {
return os.RemoveAll(e.LayerDirPath)
}
func (e *ExportedImage) ExtractLayerDir(unpackmode string) error {
err := os.MkdirAll(e.LayerDirPath, 0755)
if err != nil {
return err
}
if err := ExtractLayer(&ExtractOpts{
Source: e.LayerTarPath,
Destination: e.LayerDirPath,
Compressed: true,
KeepDirlinks: true,
Rootless: false,
UnpackMode: unpackmode}); err != nil {
return err
}
return nil
}
|