gitextract_sbk4zkuw/ ├── .gitignore ├── CHANGELOG.md ├── Documentation/ │ └── devel/ │ └── release.md ├── LICENSE ├── MAINTAINERS ├── README.md ├── build.sh ├── glide.yaml ├── lib/ │ ├── common/ │ │ ├── common.go │ │ └── common_test.go │ ├── conversion_store.go │ ├── docker2aci.go │ ├── internal/ │ │ ├── backend/ │ │ │ ├── file/ │ │ │ │ └── file.go │ │ │ └── repository/ │ │ │ ├── repository.go │ │ │ ├── repository1.go │ │ │ └── repository2.go │ │ ├── docker/ │ │ │ └── docker.go │ │ ├── internal.go │ │ ├── internal_test.go │ │ ├── tarball/ │ │ │ ├── tarfile.go │ │ │ └── walk.go │ │ ├── types/ │ │ │ └── docker_types.go │ │ ├── typesV2/ │ │ │ └── docker_types.go │ │ └── util/ │ │ └── util.go │ ├── tests/ │ │ ├── common.go │ │ ├── server.go │ │ └── v22_test.go │ └── version.go ├── main.go ├── pkg/ │ └── log/ │ └── log.go ├── scripts/ │ ├── bump-release │ └── glide-update ├── tests/ │ ├── README.md │ ├── fixture-test-depsloop/ │ │ ├── check.sh │ │ └── fixture-test-depsloop.docker │ ├── fixture-test-invalidlayerid/ │ │ ├── check.sh │ │ └── fixture-test-invalidlayerid.docker │ ├── rkt-v1.1.0.md5sum │ ├── test-basic/ │ │ ├── Dockerfile │ │ └── check.sh │ ├── test-pwl/ │ │ ├── Dockerfile │ │ └── check.sh │ ├── test-whiteouts/ │ │ ├── Dockerfile │ │ └── check.sh │ └── test.sh └── vendor/ ├── github.com/ │ ├── appc/ │ │ └── spec/ │ │ ├── LICENSE │ │ ├── aci/ │ │ │ ├── build.go │ │ │ ├── doc.go │ │ │ ├── file.go │ │ │ ├── layout.go │ │ │ └── writer.go │ │ ├── pkg/ │ │ │ ├── acirenderer/ │ │ │ │ ├── acirenderer.go │ │ │ │ └── resolve.go │ │ │ ├── device/ │ │ │ │ ├── device_linux.go │ │ │ │ └── device_posix.go │ │ │ └── tarheader/ │ │ │ ├── doc.go │ │ │ ├── pop_darwin.go │ │ │ ├── pop_linux.go │ │ │ ├── pop_posix.go │ │ │ └── tarheader.go │ │ └── schema/ │ │ ├── common/ │ │ │ └── common.go │ │ ├── doc.go │ │ ├── image.go │ │ ├── kind.go │ │ ├── pod.go │ │ ├── types/ │ │ │ ├── acidentifier.go │ │ │ ├── ackind.go │ │ │ ├── acname.go │ │ │ ├── annotations.go │ │ │ ├── app.go │ │ │ ├── date.go │ │ │ ├── dependencies.go │ │ │ ├── doc.go │ │ │ ├── environment.go │ │ │ ├── errors.go │ │ │ ├── event_handler.go │ │ │ ├── exec.go │ │ │ ├── hash.go │ │ │ ├── isolator.go │ │ │ ├── isolator_linux_specific.go │ │ │ ├── isolator_resources.go │ │ │ ├── isolator_unix.go │ │ │ ├── labels.go │ │ │ ├── mountpoint.go │ │ │ ├── port.go │ │ │ ├── resource/ │ │ │ │ ├── amount.go │ │ │ │ ├── math.go │ │ │ │ ├── quantity.go │ │ │ │ ├── scale_int.go │ │ │ │ └── suffix.go │ │ │ ├── semver.go │ │ │ ├── url.go │ │ │ ├── user_annotations.go │ │ │ ├── user_labels.go │ │ │ ├── uuid.go │ │ │ └── volume.go │ │ └── version.go │ ├── coreos/ │ │ ├── go-semver/ │ │ │ ├── LICENSE │ │ │ ├── example.go │ │ │ └── semver/ │ │ │ ├── semver.go │ │ │ └── sort.go │ │ ├── ioprogress/ │ │ │ ├── LICENSE │ │ │ ├── draw.go │ │ │ └── reader.go │ │ └── pkg/ │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── progressutil/ │ │ ├── iocopy.go │ │ └── progressbar.go │ ├── docker/ │ │ └── distribution/ │ │ ├── LICENSE │ │ ├── blobs.go │ │ ├── digestset/ │ │ │ └── set.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── manifests.go │ │ ├── reference/ │ │ │ ├── helpers.go │ │ │ ├── normalize.go │ │ │ ├── reference.go │ │ │ └── regexp.go │ │ ├── registry.go │ │ └── tags.go │ ├── klauspost/ │ │ ├── compress/ │ │ │ ├── LICENSE │ │ │ └── flate/ │ │ │ ├── copy.go │ │ │ ├── crc32_amd64.go │ │ │ ├── crc32_amd64.s │ │ │ ├── crc32_noasm.go │ │ │ ├── deflate.go │ │ │ ├── dict_decoder.go │ │ │ ├── gen.go │ │ │ ├── huffman_bit_writer.go │ │ │ ├── huffman_code.go │ │ │ ├── inflate.go │ │ │ ├── reverse_bits.go │ │ │ ├── snappy.go │ │ │ └── token.go │ │ ├── cpuid/ │ │ │ ├── LICENSE │ │ │ ├── cpuid.go │ │ │ ├── cpuid_386.s │ │ │ ├── cpuid_amd64.s │ │ │ ├── detect_intel.go │ │ │ ├── detect_ref.go │ │ │ ├── generate.go │ │ │ └── private-gen.go │ │ ├── crc32/ │ │ │ ├── LICENSE │ │ │ ├── crc32.go │ │ │ ├── crc32_amd64.go │ │ │ ├── crc32_amd64.s │ │ │ ├── crc32_amd64p32.go │ │ │ ├── crc32_amd64p32.s │ │ │ └── crc32_generic.go │ │ └── pgzip/ │ │ ├── LICENSE │ │ ├── gunzip.go │ │ └── gzip.go │ ├── opencontainers/ │ │ ├── go-digest/ │ │ │ ├── LICENSE.code │ │ │ ├── LICENSE.docs │ │ │ ├── algorithm.go │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ └── verifiers.go │ │ └── image-spec/ │ │ ├── LICENSE │ │ └── specs-go/ │ │ ├── v1/ │ │ │ ├── config.go │ │ │ ├── descriptor.go │ │ │ ├── manifest.go │ │ │ ├── manifest_list.go │ │ │ └── mediatype.go │ │ ├── version.go │ │ └── versioned.go │ └── spf13/ │ └── pflag/ │ ├── LICENSE │ └── flag.go ├── go4.org/ │ ├── LICENSE │ └── errorutil/ │ └── highlight.go ├── golang.org/ │ └── x/ │ └── crypto/ │ ├── LICENSE │ ├── PATENTS │ └── ssh/ │ └── terminal/ │ ├── terminal.go │ ├── util.go │ ├── util_bsd.go │ ├── util_linux.go │ └── util_windows.go └── gopkg.in/ └── inf.v0/ ├── LICENSE ├── dec.go └── rounder.go