├── .cirrus.yml ├── .codespellrc ├── .fmf └── version ├── .github ├── ISSUE_TEMPLATE │ ├── buildah_bug_report.yaml │ ├── config.yaml │ └── podman_build_bug_report.yaml ├── PULL_REQUEST_TEMPLATE.md ├── release.yml ├── renovate.json5 └── workflows │ ├── check_cirrus_cron.yml │ ├── issue_pr_lock.yml │ ├── pr.yml │ └── stale.yml ├── .gitignore ├── .golangci.yml ├── .packit.yaml ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── OWNERS ├── README.md ├── ROADMAP.md ├── SECURITY.md ├── add.go ├── bind ├── mount.go ├── mount_unsupported.go └── util.go ├── btrfs_installed_tag.sh ├── changelog.txt ├── chroot ├── run_common.go ├── run_freebsd.go ├── run_linux.go ├── run_linux_test.go ├── run_test.go ├── seccomp.go ├── seccomp_freebsd.go ├── seccomp_test.go ├── seccomp_unsupported.go ├── seccomp_unsupported_test.go ├── selinux.go ├── selinux_unsupported.go └── unsupported.go ├── cmd └── buildah │ ├── addcopy.go │ ├── build.go │ ├── commit.go │ ├── common.go │ ├── common_test.go │ ├── config.go │ ├── containers.go │ ├── containers_test.go │ ├── dumpbolt.go │ ├── from.go │ ├── images.go │ ├── images_test.go │ ├── info.go │ ├── inspect.go │ ├── login.go │ ├── logout.go │ ├── main.go │ ├── manifest.go │ ├── mkcw.go │ ├── mount.go │ ├── prune.go │ ├── pull.go │ ├── push.go │ ├── rename.go │ ├── rm.go │ ├── rmi.go │ ├── run.go │ ├── source.go │ ├── tag.go │ ├── umount.go │ ├── unshare.go │ ├── unshare_unsupported.go │ └── version.go ├── commit.go ├── commit_test.go ├── common.go ├── common_test.go ├── config.go ├── contrib ├── buildahimage │ └── README.md ├── cirrus │ ├── bors-ng.png │ ├── build.sh │ ├── lib.sh │ ├── logcollector.sh │ ├── setup.sh │ ├── test.sh │ └── timestamp.awk ├── completions │ └── bash │ │ └── buildah └── docker │ └── Dockerfile ├── convertcw.go ├── convertcw_test.go ├── copier ├── copier.go ├── copier_linux_test.go ├── copier_test.go ├── copier_unix_test.go ├── copier_windows_test.go ├── hardlink_not_uint64.go ├── hardlink_uint64.go ├── hardlink_unix.go ├── hardlink_windows.go ├── mknod_int.go ├── mknod_uint64.go ├── syscall_unix.go ├── syscall_windows.go ├── xattrs.go ├── xattrs_test.go └── xattrs_unsupported.go ├── define ├── build.go ├── build_test.go ├── isolation.go ├── mount_freebsd.go ├── mount_linux.go ├── mount_unsupported.go ├── namespace.go ├── pull.go ├── pull_test.go ├── types.go ├── types_test.go ├── types_unix.go └── types_unsupported.go ├── delete.go ├── demos ├── README.md ├── buildah-bud-demo.sh ├── buildah-scratch-demo.sh ├── buildah_multi_stage.sh └── docker-compatibility-demo.sh ├── developmentplan.md ├── digester.go ├── digester_test.go ├── docker ├── AUTHORS └── types.go ├── docs ├── Makefile ├── buildah-add.1.md ├── buildah-build.1.md ├── buildah-commit.1.md ├── buildah-config.1.md ├── buildah-containers.1.md ├── buildah-copy.1.md ├── buildah-from.1.md ├── buildah-images.1.md ├── buildah-info.1.md ├── buildah-inspect.1.md ├── buildah-login.1.md ├── buildah-logout.1.md ├── buildah-manifest-add.1.md ├── buildah-manifest-annotate.1.md ├── buildah-manifest-create.1.md ├── buildah-manifest-exists.1.md ├── buildah-manifest-inspect.1.md ├── buildah-manifest-push.1.md ├── buildah-manifest-remove.1.md ├── buildah-manifest-rm.1.md ├── buildah-manifest.1.md ├── buildah-mkcw.1.md ├── buildah-mount.1.md ├── buildah-prune.1.md ├── buildah-pull.1.md ├── buildah-push.1.md ├── buildah-rename.1.md ├── buildah-rm.1.md ├── buildah-rmi.1.md ├── buildah-run.1.md ├── buildah-source-add.1.md ├── buildah-source-create.1.md ├── buildah-source-pull.1.md ├── buildah-source-push.1.md ├── buildah-source.1.md ├── buildah-tag.1.md ├── buildah-umount.1.md ├── buildah-unshare.1.md ├── buildah-version.1.md ├── buildah.1.md ├── cni-examples │ ├── 100-buildah-bridge.conf │ ├── 200-loopback.conf │ └── README.md ├── containertools │ └── README.md ├── links │ └── buildah-bud.1 ├── release-announcements │ ├── README.md │ ├── v0.12.md │ ├── v0.16.md │ ├── v1.1.md │ ├── v1.2.md │ ├── v1.3.md │ ├── v1.4.md │ └── v1.5.md ├── samples │ └── registries.conf └── tutorials │ ├── 01-intro.md │ ├── 02-registries-repositories.md │ ├── 03-on-build.md │ ├── 04-include-in-your-build-tool.md │ ├── 05-openshift-rootless-build.md │ └── README.md ├── examples ├── all-the-things.sh ├── copy.sh └── lighttpd.sh ├── go.mod ├── go.sum ├── hack ├── apparmor_tag.sh ├── build_speed.sh ├── check_vendor_toolchain.sh ├── get_ci_vm.sh ├── libsubid_tag.sh ├── sqlite_tag.sh ├── systemd_tag.sh ├── tree_status.sh └── xref-helpmsgs-manpages ├── image.go ├── imagebuildah ├── build.go ├── build_linux.go ├── build_linux_test.go ├── build_notlinux.go ├── executor.go ├── stage_executor.go ├── stage_executor_test.go ├── util.go └── util_test.go ├── import.go ├── info.go ├── install.md ├── internal ├── config │ ├── convert.go │ ├── convert_test.go │ ├── executor.go │ ├── executor_test.go │ └── override.go ├── metadata │ └── metadata.go ├── mkcw │ ├── archive.go │ ├── archive_test.go │ ├── attest.go │ ├── embed │ │ ├── asm │ │ │ ├── doc.md │ │ │ └── entrypoint_amd64.s │ │ ├── check.sh │ │ ├── doc.go │ │ ├── entrypoint.go │ │ ├── entrypoint_amd64.gz │ │ ├── entrypoint_amd64.s │ │ ├── entrypoint_arm64.s │ │ ├── entrypoint_ppc64le.s │ │ └── entrypoint_s390x.s │ ├── entrypoint.go │ ├── luks.go │ ├── luks_test.go │ ├── makefs.go │ ├── types │ │ ├── attest.go │ │ └── workload.go │ ├── workload.go │ └── workload_test.go ├── open │ ├── open.go │ ├── open_linux.go │ ├── open_linux_test.go │ ├── open_test.go │ ├── open_types.go │ ├── open_unix.go │ └── open_unsupported.go ├── parse │ └── parse.go ├── pty │ ├── pty_posix.go │ ├── pty_ptmx.go │ └── pty_unsupported.go ├── sanitize │ ├── sanitize.go │ └── sanitize_test.go ├── sbom │ ├── merge.go │ ├── merge_test.go │ ├── presets.go │ └── presets_test.go ├── source │ ├── add.go │ ├── create.go │ ├── pull.go │ ├── push.go │ └── source.go ├── tmpdir │ ├── tmpdir.go │ └── tmpdir_test.go ├── types.go ├── util │ ├── util.go │ └── util_test.go └── volumes │ ├── bind_linux.go │ ├── bind_linux_test.go │ ├── bind_notlinux.go │ ├── bind_test.go │ ├── volumes.go │ └── volumes_test.go ├── logos ├── buildah-logo-source.svg ├── buildah-logo_large.png ├── buildah-logo_large_transparent-bg.png ├── buildah-logo_medium.png ├── buildah-logo_medium_transparent-bg.png ├── buildah-logo_reverse_large.png ├── buildah-logo_reverse_medium.png ├── buildah-logo_reverse_small.png ├── buildah-logo_small.png ├── buildah-logo_small_transparent-bg.png ├── buildah-logomark_large.png ├── buildah-logomark_large_transparent-bg.png ├── buildah-logomark_medium.png ├── buildah-logomark_medium_transparent-bg.png ├── buildah-logomark_small.png └── buildah-logomark_small_transparent-bg.png ├── manifests └── compat.go ├── mount.go ├── new.go ├── new_test.go ├── pkg ├── binfmt │ ├── binfmt.go │ └── binfmt_unsupported.go ├── blobcache │ └── blobcache.go ├── chrootuser │ ├── user.go │ ├── user_basic.go │ ├── user_test.go │ └── user_unix.go ├── cli │ ├── build.go │ ├── common.go │ ├── common_test.go │ └── exec_codes.go ├── completion │ └── completion.go ├── dummy │ └── dummy_test.go ├── formats │ ├── doc.go │ ├── formats.go │ └── templates.go ├── jail │ ├── jail.go │ ├── jail_int32.go │ ├── jail_int64.go │ └── jail_test.go ├── manifests │ └── compat.go ├── overlay │ ├── overlay.go │ ├── overlay_freebsd.go │ ├── overlay_linux.go │ └── overlay_unsupported.go ├── parse │ ├── parse.go │ ├── parse_test.go │ ├── parse_unix.go │ └── parse_unsupported.go ├── rusage │ ├── rusage.go │ ├── rusage_test.go │ ├── rusage_unix.go │ └── rusage_unsupported.go ├── sshagent │ ├── sshagent.go │ └── sshagent_test.go ├── supplemented │ └── compat.go ├── umask │ └── umask.go ├── util │ ├── resource_unix.go │ ├── resource_unix_test.go │ ├── resource_windows.go │ ├── test │ │ ├── test1 │ │ │ ├── Containerfile │ │ │ └── Dockerfile │ │ └── test2 │ │ │ └── Dockerfile │ ├── uptime_darwin.go │ ├── uptime_freebsd.go │ ├── uptime_linux.go │ ├── uptime_netbsd.go │ ├── uptime_windows.go │ ├── util.go │ ├── util_test.go │ ├── version_unix.go │ └── version_windows.go └── volumes │ └── volumes.go ├── plans └── main.fmf ├── pull.go ├── push.go ├── release.sh ├── rpm ├── Makefile ├── buildah.spec ├── gating.yaml └── update-spec-version.sh ├── run.go ├── run_common.go ├── run_common_test.go ├── run_freebsd.go ├── run_linux.go ├── run_test.go ├── run_unix.go ├── run_unsupported.go ├── scan.go ├── seccomp.go ├── seccomp_unsupported.go ├── selinux.go ├── selinux_unsupported.go ├── tests ├── NEW-IMAGES ├── add.bats ├── authenticate.bats ├── basic.bats ├── blobcache.bats ├── bud.bats ├── bud │ ├── add-checksum │ │ ├── Containerfile │ │ ├── Containerfile.bad │ │ └── Containerfile.bad-checksum │ ├── add-chmod │ │ ├── Dockerfile │ │ ├── Dockerfile.bad │ │ ├── Dockerfile.combined │ │ └── addchmod.txt │ ├── add-chown │ │ ├── Dockerfile │ │ ├── Dockerfile.bad │ │ └── addchown.txt │ ├── add-create-absolute-path │ │ ├── Dockerfile │ │ └── distutils.cfg │ ├── add-create-relative-path │ │ ├── Dockerfile │ │ └── distutils.cfg │ ├── add-file │ │ ├── Dockerfile │ │ ├── file │ │ └── file2 │ ├── add-run-dir │ │ └── Dockerfile │ ├── addtl-tags │ │ └── Dockerfile │ ├── all-platform │ │ └── Containerfile.default-arg │ ├── base-with-arg │ │ ├── Containerfile │ │ ├── Containerfile2 │ │ ├── Containerfilebad │ │ ├── first.args │ │ └── second.args │ ├── base-with-labels │ │ ├── Containerfile │ │ ├── Containerfile.layer │ │ ├── Containerfile.multi-stage │ │ └── Containerfile2 │ ├── bud.limits │ │ └── Containerfile │ ├── build-arg │ │ ├── Dockerfile │ │ ├── Dockerfile2 │ │ ├── Dockerfile3 │ │ └── Dockerfile4 │ ├── build-with-from │ │ └── Containerfile │ ├── buildkit-mount-from │ │ ├── Dockerfilebindfrom │ │ ├── Dockerfilebindfromrelative │ │ ├── Dockerfilebindfromwithemptyfrom │ │ ├── Dockerfilebindfromwithoutsource │ │ ├── Dockerfilebindfromwriteable │ │ ├── Dockerfilebuildkitbase │ │ ├── Dockerfilebuildkitbaserelative │ │ ├── Dockerfilecachefrom │ │ ├── Dockerfilecachefromimage │ │ ├── Dockerfilecachemultiplefrom │ │ ├── Dockerfilemultistagefrom │ │ ├── Dockerfilemultistagefromcache │ │ ├── Dockermultistagefrom │ │ ├── hello │ │ ├── hello1 │ │ └── hello2 │ ├── buildkit-mount │ │ ├── Containerfile5 │ │ ├── Dockerfile │ │ ├── Dockerfile2 │ │ ├── Dockerfile3 │ │ ├── Dockerfile4 │ │ ├── Dockerfile6 │ │ ├── Dockerfilecacheread │ │ ├── Dockerfilecachereadwithoutz │ │ ├── Dockerfilecachewrite │ │ ├── Dockerfilecachewritesharing │ │ ├── Dockerfilecachewritewithoutz │ │ ├── Dockerfilemultiplemounts │ │ ├── Dockerfiletmpfs │ │ ├── Dockerfiletmpfscopyup │ │ ├── input_file │ │ └── subdir │ │ │ └── input_file │ ├── cache-chown │ │ ├── Dockerfile.add1 │ │ ├── Dockerfile.add2 │ │ ├── Dockerfile.copy1 │ │ ├── Dockerfile.copy2 │ │ ├── Dockerfile.prev1 │ │ ├── Dockerfile.prev2 │ │ ├── Dockerfile.tar1 │ │ ├── Dockerfile.tar2 │ │ ├── Dockerfile.url1 │ │ ├── Dockerfile.url2 │ │ ├── testfile │ │ └── testfile.tar.gz │ ├── cache-format │ │ └── Dockerfile │ ├── cache-from-stage │ │ ├── Containerfile │ │ └── testfile │ ├── cache-from │ │ └── Containerfile │ ├── cache-mount-locked │ │ ├── Containerfile │ │ └── file │ ├── cache-scratch │ │ ├── Dockerfile │ │ ├── Dockerfile.config │ │ ├── Dockerfile.different1 │ │ └── Dockerfile.different2 │ ├── cache-stages │ │ ├── Dockerfile.1 │ │ ├── Dockerfile.2 │ │ └── Dockerfile.3 │ ├── capabilities │ │ └── Dockerfile │ ├── cdi │ │ ├── Dockerfile │ │ └── containers-cdi.yaml │ ├── check-race │ │ └── Containerfile │ ├── commit │ │ └── name-path-changes │ │ │ └── Dockerfile │ ├── container-ignoresymlink │ │ ├── Dockerfile │ │ ├── hello │ │ └── world │ ├── containeranddockerfile │ │ ├── Containerfile │ │ └── Dockerfile │ ├── containerfile │ │ ├── Containerfile │ │ └── Containerfile.in │ ├── containerignore │ │ ├── .containerignore │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── Dockerfile.succeed │ │ ├── subdir │ │ │ ├── sub1.txt │ │ │ └── sub2.txt │ │ ├── test1.txt │ │ └── test2.txt │ ├── context-escape-dir │ │ ├── testdir │ │ │ └── Containerfile │ │ └── upperfile.txt │ ├── context-from-stdin │ │ └── Dockerfile │ ├── copy-archive │ │ └── Containerfile │ ├── copy-chmod │ │ ├── Dockerfile │ │ ├── Dockerfile.bad │ │ ├── Dockerfile.combined │ │ └── copychmod.txt │ ├── copy-chown │ │ ├── Containerfile.chown_user │ │ ├── Dockerfile │ │ ├── Dockerfile.bad │ │ ├── Dockerfile.bad2 │ │ └── copychown.txt │ ├── copy-create-absolute-path │ │ ├── Dockerfile │ │ └── distutils.cfg │ ├── copy-create-relative-path │ │ ├── Dockerfile │ │ └── distutils.cfg │ ├── copy-envvar │ │ ├── Containerfile │ │ └── file-0.0.1.txt │ ├── copy-exclude │ │ ├── Containerfile │ │ ├── Containerfile.missing │ │ ├── test1.txt │ │ └── test2.txt │ ├── copy-from │ │ ├── Dockerfile │ │ ├── Dockerfile.bad │ │ ├── Dockerfile2 │ │ ├── Dockerfile2.bad │ │ ├── Dockerfile3 │ │ └── Dockerfile4 │ ├── copy-globs │ │ ├── Containerfile │ │ ├── Containerfile.bad │ │ ├── Containerfile.missing │ │ ├── Dockerfile │ │ ├── test1.txt │ │ └── test2.txt │ ├── copy-multiple-files │ │ ├── Dockerfile │ │ ├── file │ │ └── file2 │ ├── copy-multistage-paths │ │ ├── Dockerfile.absolute │ │ ├── Dockerfile.invalid_from │ │ └── Dockerfile.relative │ ├── copy-parents │ │ ├── Containerfile │ │ ├── Containerfile-hardlinks │ │ ├── x │ │ │ ├── a.txt │ │ │ ├── y │ │ │ │ ├── a.txt │ │ │ │ └── b.txt │ │ │ └── z │ │ │ │ ├── a.txt │ │ │ │ └── b.txt │ │ └── y │ │ │ ├── a.txt │ │ │ └── b.txt │ ├── copy-root │ │ ├── Dockerfile │ │ └── distutils.cfg │ ├── copy-workdir │ │ ├── Dockerfile │ │ ├── Dockerfile.2 │ │ ├── file1.txt │ │ └── file2.txt │ ├── dest-final-slash │ │ └── Dockerfile │ ├── dest-symlink-dangling │ │ └── Dockerfile │ ├── dest-symlink │ │ └── Dockerfile │ ├── device │ │ └── Dockerfile │ ├── dns │ │ └── Dockerfile │ ├── dockerfile │ │ └── Dockerfile │ ├── dockerignore │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── Dockerfile.succeed │ │ ├── subdir │ │ │ ├── sub1.txt │ │ │ └── sub2.txt │ │ ├── test1.txt │ │ └── test2.txt │ ├── dockerignore2 │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ └── subdir │ │ │ ├── sub1.txt │ │ │ └── subsubdir │ │ │ └── subsub1.txt │ ├── dockerignore3 │ │ ├── .dockerignore │ │ ├── BUILD.md │ │ ├── COPYRIGHT │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README-secret.md │ │ ├── README.md │ │ ├── manifest │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── cmd │ │ │ │ ├── Makefile │ │ │ │ └── main.in │ │ │ ├── etc │ │ │ │ ├── foo.conf │ │ │ │ └── foo.conf.d │ │ │ │ │ └── dropin.conf │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ └── framework.in │ │ ├── test1.txt │ │ ├── test2.txt │ │ └── test3.txt │ ├── dockerignore4 │ │ ├── BUILD.md │ │ ├── COPYRIGHT │ │ ├── Dockerfile.test │ │ ├── Dockerfile.test.dockerignore │ │ ├── LICENSE │ │ ├── README-secret.md │ │ ├── README.md │ │ ├── manifest │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── cmd │ │ │ │ ├── Makefile │ │ │ │ └── main.in │ │ │ ├── etc │ │ │ │ ├── foo.conf │ │ │ │ └── foo.conf.d │ │ │ │ │ └── dropin.conf │ │ │ └── lib │ │ │ │ ├── Makefile │ │ │ │ └── framework.in │ │ ├── test1.txt │ │ ├── test2.txt │ │ └── test3.txt │ ├── dockerignore6 │ │ ├── Dockerfile │ │ ├── Dockerfile.dockerignore │ │ ├── Dockerfile.succeed │ │ ├── Dockerfile.succeed.dockerignore │ │ ├── subdir │ │ │ ├── sub1.txt │ │ │ └── sub2.txt │ │ ├── test1.txt │ │ └── test2.txt │ ├── dupe-arg-env-name │ │ └── Containerfile │ ├── env │ │ ├── Dockerfile.check-env │ │ ├── Dockerfile.env-from-image │ │ ├── Dockerfile.env-precedence │ │ ├── Dockerfile.env-same-file │ │ └── Dockerfile.special-chars │ ├── exit42 │ │ └── Containerfile │ ├── from-as │ │ ├── Dockerfile │ │ └── Dockerfile.skip │ ├── from-base │ │ └── Containerfile │ ├── from-invalid-registry │ │ └── Containerfile │ ├── from-multiple-files │ │ ├── Dockerfile1.alpine │ │ ├── Dockerfile1.scratch │ │ ├── Dockerfile2.glob │ │ ├── Dockerfile2.nofrom │ │ └── Dockerfile2.withfrom │ ├── from-scratch │ │ ├── Containerfile │ │ ├── Containerfile2 │ │ └── Dockerfile │ ├── from-with-arg │ │ └── Containerfile │ ├── group │ │ └── Containerfile │ ├── hardlink │ │ └── Dockerfile │ ├── healthcheck │ │ └── Dockerfile │ ├── heredoc-ignore │ │ ├── .containerignore │ │ └── Containerfile │ ├── heredoc │ │ ├── Containerfile │ │ ├── Containerfile.bash_file │ │ ├── Containerfile.she_bang │ │ └── Containerfile.verify_mount_leak │ ├── http-context-containerfile │ │ └── context.tar │ ├── http-context-subdir │ │ └── context.tar │ ├── http-context │ │ └── context.tar │ ├── inline-network │ │ ├── Dockerfile1 │ │ ├── Dockerfile2 │ │ ├── Dockerfile3 │ │ └── Dockerfile4 │ ├── layers-squash │ │ ├── Dockerfile │ │ ├── Dockerfile.hardlinks │ │ ├── Dockerfile.multi-stage │ │ └── artifact │ ├── leading-args │ │ └── Dockerfile │ ├── long-sleep │ │ └── Dockerfile │ ├── maintainer │ │ └── Dockerfile │ ├── masks │ │ ├── Containerfile │ │ └── test.sh │ ├── mount │ │ └── Dockerfile │ ├── multi-stage-builds-small-as │ │ ├── Dockerfile.index │ │ ├── Dockerfile.mixed │ │ └── Dockerfile.name │ ├── multi-stage-builds │ │ ├── Dockerfile.arg │ │ ├── Dockerfile.arg_in_copy │ │ ├── Dockerfile.arg_in_stage │ │ ├── Dockerfile.extended │ │ ├── Dockerfile.index │ │ ├── Dockerfile.mixed │ │ ├── Dockerfile.name │ │ ├── Dockerfile.rebase │ │ ├── Dockerfile.reused │ │ └── Dockerfile.reused2 │ ├── multi-stage-only-base │ │ ├── Containerfile1 │ │ ├── Containerfile2 │ │ └── Containerfile3 │ ├── multiarch │ │ ├── Containerfile.reset-platform │ │ ├── Dockerfile │ │ ├── Dockerfile.built-in-args │ │ ├── Dockerfile.fail │ │ ├── Dockerfile.fail-multistage │ │ └── Dockerfile.no-run │ ├── namespaces │ │ └── Containerfile │ ├── network │ │ └── Containerfile │ ├── no-change │ │ └── Dockerfile │ ├── no-history │ │ └── Dockerfile │ ├── no-hostname │ │ ├── Containerfile │ │ └── Containerfile.noetc │ ├── non-directory-in-path │ │ └── non-directory │ ├── onbuild │ │ ├── Dockerfile │ │ ├── Dockerfile1 │ │ └── Dockerfile2 │ ├── only-base │ │ └── Containerfile │ ├── platform-sets-args │ │ └── Containerfile │ ├── preprocess │ │ ├── Decomposed.in │ │ ├── Error.in │ │ ├── common │ │ └── install-base │ ├── preserve-volumes │ │ └── Dockerfile │ ├── pull │ │ └── Containerfile │ ├── recurse │ │ └── Dockerfile │ ├── run-mounts │ │ ├── Dockerfile.secret │ │ ├── Dockerfile.secret-access │ │ ├── Dockerfile.secret-mode │ │ ├── Dockerfile.secret-not-required │ │ ├── Dockerfile.secret-options │ │ ├── Dockerfile.secret-required │ │ ├── Dockerfile.secret-required-false │ │ ├── Dockerfile.secret-required-wo-value │ │ ├── Dockerfile.ssh │ │ ├── Dockerfile.ssh_access │ │ └── Dockerfile.ssh_options │ ├── run-privd │ │ └── Dockerfile │ ├── run-scenarios │ │ ├── Dockerfile.args │ │ ├── Dockerfile.cmd-empty-run │ │ ├── Dockerfile.cmd-run │ │ ├── Dockerfile.entrypoint-cmd-empty-run │ │ ├── Dockerfile.entrypoint-cmd-run │ │ ├── Dockerfile.entrypoint-empty-run │ │ ├── Dockerfile.entrypoint-run │ │ ├── Dockerfile.multi-args │ │ └── Dockerfile.noop-flags │ ├── secret-env │ │ └── Dockerfile │ ├── secret-relative │ │ ├── Dockerfile │ │ ├── secret1.txt │ │ └── secret2.txt │ ├── shell │ │ ├── Dockerfile │ │ ├── Dockerfile.build-shell-custom │ │ └── Dockerfile.build-shell-default │ ├── simple-multi-step │ │ └── Containerfile │ ├── stdio │ │ └── Dockerfile │ ├── supplemental-groups │ │ └── Dockerfile │ ├── symlink │ │ ├── Containerfile.add-tar-gz-with-link │ │ ├── Containerfile.add-tar-with-link │ │ ├── Dockerfile │ │ ├── Dockerfile.absolute-dir-symlink │ │ ├── Dockerfile.absolute-symlink │ │ ├── Dockerfile.multiple-symlinks │ │ ├── Dockerfile.relative-symlink │ │ ├── Dockerfile.replace-symlink │ │ ├── Dockerfile.symlink-points-to-itself │ │ ├── tarball.tar │ │ ├── tarball.tar.gz │ │ ├── tarball_latest.tar │ │ └── tarball_latest.tar.gz │ ├── target │ │ └── Dockerfile │ ├── targetarch │ │ └── Dockerfile │ ├── terminal │ │ └── Dockerfile │ ├── unrecognized │ │ └── Dockerfile │ ├── use-args │ │ ├── Containerfile │ │ ├── Containerfile.dest_nobrace │ │ └── Containerfile.destination │ ├── use-layers │ │ ├── Dockerfile │ │ ├── Dockerfile.2 │ │ ├── Dockerfile.3 │ │ ├── Dockerfile.4 │ │ ├── Dockerfile.5 │ │ ├── Dockerfile.6 │ │ ├── Dockerfile.7 │ │ ├── Dockerfile.build-args │ │ ├── Dockerfile.dangling-symlink │ │ ├── Dockerfile.fail-case │ │ ├── Dockerfile.multistage-copy │ │ └── Dockerfile.non-existent-registry │ ├── verify-cleanup │ │ ├── Dockerfile │ │ ├── hey │ │ └── secret1.txt │ ├── volume-ownership │ │ └── Dockerfile │ ├── volume-perms │ │ └── Dockerfile │ ├── volume-symlink │ │ ├── Dockerfile │ │ └── Dockerfile.no-symlink │ ├── with-arg │ │ ├── Dockerfile │ │ ├── Dockerfile2 │ │ └── Dockerfilefromarg │ ├── workdir-symlink │ │ ├── Dockerfile │ │ ├── Dockerfile-2 │ │ └── Dockerfile-3 │ └── workdir-user │ │ └── Dockerfile ├── bud_overlay_leaks.bats ├── byid.bats ├── cdi.bats ├── chroot.bats ├── commit.bats ├── config.bats ├── conformance │ ├── README.md │ ├── conformance_test.go │ ├── selinux_linux_test.go │ ├── selinux_unsupported_test.go │ └── testdata │ │ ├── Dockerfile.add │ │ ├── Dockerfile.copyfrom_1 │ │ ├── Dockerfile.copyfrom_10 │ │ ├── Dockerfile.copyfrom_11 │ │ ├── Dockerfile.copyfrom_12 │ │ ├── Dockerfile.copyfrom_13 │ │ ├── Dockerfile.copyfrom_2 │ │ ├── Dockerfile.copyfrom_3 │ │ ├── Dockerfile.copyfrom_3_1 │ │ ├── Dockerfile.copyfrom_4 │ │ ├── Dockerfile.copyfrom_5 │ │ ├── Dockerfile.copyfrom_6 │ │ ├── Dockerfile.copyfrom_7 │ │ ├── Dockerfile.copyfrom_8 │ │ ├── Dockerfile.copyfrom_9 │ │ ├── Dockerfile.edgecases │ │ ├── Dockerfile.env │ │ ├── Dockerfile.exposedefault │ │ ├── Dockerfile.heredoc-quoting │ │ ├── Dockerfile.margs │ │ ├── Dockerfile.reusebase │ │ ├── Dockerfile.run.args │ │ ├── Dockerfile.shell │ │ ├── add │ │ ├── archive │ │ │ ├── Dockerfile.1 │ │ │ ├── Dockerfile.2 │ │ │ ├── Dockerfile.3 │ │ │ ├── Dockerfile.4 │ │ │ ├── Dockerfile.5 │ │ │ ├── Dockerfile.6 │ │ │ ├── Dockerfile.7 │ │ │ └── sub │ │ │ │ └── subdirectory.tar.gz │ │ ├── dir-not-dir │ │ │ ├── Dockerfile │ │ │ └── test.tar │ │ ├── not-dir-dir │ │ │ ├── Dockerfile │ │ │ └── test.tar │ │ ├── parent-clean │ │ │ └── Dockerfile │ │ ├── parent-dangling │ │ │ └── Dockerfile │ │ ├── parent-symlink │ │ │ ├── Dockerfile │ │ │ └── foobar.tar │ │ └── populated-dir-not-dir │ │ │ ├── Dockerfile │ │ │ └── test.tar │ │ ├── builtins │ │ ├── Dockerfile │ │ ├── otherfile.txt │ │ └── sourcefile.txt │ │ ├── chown-volume │ │ └── Dockerfile │ │ ├── copy-escape-glob │ │ ├── Dockerfile │ │ └── app │ │ │ ├── [xyz] │ │ │ ├── [abc] │ │ │ │ └── file.txt │ │ │ └── file.txt │ │ │ ├── nope │ │ │ └── file.txt │ │ │ └── strauv │ │ │ └── file.txt │ │ ├── copy-parents │ │ ├── x │ │ │ ├── a.txt │ │ │ ├── y │ │ │ │ ├── a.txt │ │ │ │ └── b.txt │ │ │ └── z │ │ │ │ ├── a.txt │ │ │ │ └── b.txt │ │ └── y │ │ │ ├── a.txt │ │ │ └── b.txt │ │ ├── copy │ │ ├── Dockerfile │ │ └── script │ │ ├── copyblahblub │ │ ├── Dockerfile │ │ ├── Dockerfile2 │ │ ├── Dockerfile3 │ │ └── firstdir │ │ │ └── seconddir │ │ │ ├── dir-a │ │ │ └── file-a │ │ │ └── dir-b │ │ │ └── file-b │ │ ├── copychown │ │ ├── Dockerfile │ │ ├── script │ │ └── script2 │ │ ├── copydir │ │ ├── Dockerfile │ │ └── dir │ │ │ └── file │ │ ├── copyempty │ │ ├── .script │ │ ├── Dockerfile │ │ ├── Dockerfile2 │ │ ├── script1 │ │ └── script2 │ │ ├── copyglob │ │ ├── Beach.txt │ │ ├── Dockerfile │ │ ├── a │ │ │ └── sub │ │ │ │ └── subsub │ │ │ │ ├── protopatriarchal.txt │ │ │ │ └── undestructible.txt │ │ ├── b │ │ │ ├── .sub │ │ │ │ ├── gade.txt │ │ │ │ └── parcae.txt │ │ │ ├── heliacally.txt │ │ │ ├── overgoing.txt │ │ │ └── sub │ │ │ │ ├── ileosigmoidostomy.txt │ │ │ │ └── overdilation.txt │ │ ├── c │ │ │ └── sub │ │ │ │ ├── disadvise.txt │ │ │ │ ├── subsub │ │ │ │ └── subsubsub │ │ │ │ │ ├── fiddlecome.txt │ │ │ │ │ └── unweariableness.txt │ │ │ │ └── travel-sick.txt │ │ ├── d │ │ │ ├── .sub │ │ │ │ ├── restocks.txt │ │ │ │ └── unblazoned.txt │ │ │ └── sub │ │ │ │ ├── alkalinity.txt │ │ │ │ └── glandules.txt │ │ ├── e │ │ │ ├── .sub │ │ │ │ ├── Tytonidae.txt │ │ │ │ └── vice-guilty.txt │ │ │ ├── Towroy.txt │ │ │ ├── sub │ │ │ │ └── subsub │ │ │ │ │ ├── near-blindness.txt │ │ │ │ │ └── paymaster-generalship.txt │ │ │ └── subjectivities.txt │ │ ├── f │ │ │ ├── .sub │ │ │ │ ├── bilobate.txt │ │ │ │ └── fine-headed.txt │ │ │ ├── Etnean.txt │ │ │ ├── Sheya.txt │ │ │ └── sub │ │ │ │ ├── Vernaccia.txt │ │ │ │ ├── inaccordance.txt │ │ │ │ └── subsub │ │ │ │ └── subsubsub │ │ │ │ ├── ankylosing.txt │ │ │ │ └── ocean-born.txt │ │ ├── g │ │ │ ├── sub │ │ │ │ ├── huerta.txt │ │ │ │ └── smopple.txt │ │ │ ├── triple-throw.txt │ │ │ └── unexciting.txt │ │ ├── h │ │ │ ├── .sub │ │ │ │ ├── Ellston.txt │ │ │ │ └── mine-run.txt │ │ │ └── sub │ │ │ │ ├── chromaticness.txt │ │ │ │ └── noninhabitancy.txt │ │ ├── i │ │ │ ├── .sub │ │ │ │ ├── Auer.txt │ │ │ │ └── hexachlorocyclohexane.txt │ │ │ └── sub │ │ │ │ └── subsub │ │ │ │ ├── Minnnie.txt │ │ │ │ ├── papsquidder.txt │ │ │ │ └── subsubsub │ │ │ │ ├── Croghan.txt │ │ │ │ └── stacc..txt │ │ ├── j │ │ │ └── sub │ │ │ │ ├── Hamon.txt │ │ │ │ ├── subsub │ │ │ │ └── subsubsub │ │ │ │ │ ├── anapaestic.txt │ │ │ │ │ └── castlelike.txt │ │ │ │ └── topsy-turvydom.txt │ │ ├── k │ │ │ ├── coembody.txt │ │ │ └── unvoweled.txt │ │ ├── l │ │ │ ├── .sub │ │ │ │ ├── galliots.txt │ │ │ │ └── minning.txt │ │ │ ├── sub │ │ │ │ └── subsub │ │ │ │ │ ├── misidentification.txt │ │ │ │ │ └── palling.txt │ │ │ ├── torpifying.txt │ │ │ └── unmarring.txt │ │ ├── m │ │ │ └── sub │ │ │ │ ├── cache.txt │ │ │ │ └── ribbon-marked.txt │ │ └── pasteups.txt │ │ ├── copyrename │ │ ├── Dockerfile │ │ └── file1 │ │ ├── copysymlink │ │ ├── Dockerfile │ │ ├── Dockerfile2 │ │ ├── file-link.tar.gz │ │ └── file.tar.gz │ │ ├── dir │ │ ├── Dockerfile │ │ ├── file │ │ └── subdir │ │ │ └── file2 │ │ ├── dockerignore │ │ ├── allowlist │ │ │ ├── alternating-nothing │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── subdir │ │ │ │ │ └── subdir1 │ │ │ │ │ └── subdir2 │ │ │ │ │ └── subdir3 │ │ │ │ │ └── subdir4 │ │ │ │ │ └── subdir5 │ │ │ │ │ └── file │ │ │ ├── alternating-other │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── subdir │ │ │ │ │ └── subdir1 │ │ │ │ │ └── subdir2 │ │ │ │ │ └── subdir3 │ │ │ │ │ └── subdir4 │ │ │ │ │ └── subdir5 │ │ │ │ │ └── file2 │ │ │ ├── alternating │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── subdir │ │ │ │ │ └── subdir1 │ │ │ │ │ └── subdir2 │ │ │ │ │ └── subdir3 │ │ │ │ │ └── subdir4 │ │ │ │ │ └── subdir5 │ │ │ │ │ └── file │ │ │ ├── nothing-dot │ │ │ │ ├── .dockerignore │ │ │ │ └── Dockerfile │ │ │ ├── nothing-slash │ │ │ │ ├── .dockerignore │ │ │ │ └── Dockerfile │ │ │ ├── subdir-file │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── folder1 │ │ │ │ │ ├── file1 │ │ │ │ │ └── file2 │ │ │ ├── subdir-nofile │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── folder1 │ │ │ │ │ ├── file1 │ │ │ │ │ └── file2 │ │ │ ├── subsubdir-file │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── folder │ │ │ │ │ └── subfolder │ │ │ │ │ └── file │ │ │ ├── subsubdir-nofile │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── folder │ │ │ │ │ └── file │ │ │ └── subsubdir-nosubdir │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ └── folder │ │ │ │ └── file │ │ ├── empty │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── test1.txt │ │ ├── exceptions-skip │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── volume │ │ │ │ └── data │ │ │ │ └── oneline.txt │ │ ├── exceptions-weirdness-1 │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── subdir │ │ │ │ ├── sub1.txt │ │ │ │ ├── sub2.txt │ │ │ │ └── sub3.txt │ │ ├── exceptions-weirdness-2 │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── subdir │ │ │ │ ├── sub1.txt │ │ │ │ ├── sub2.txt │ │ │ │ └── sub3.txt │ │ ├── integration1 │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── subdir │ │ │ │ ├── sub1.txt │ │ │ │ └── sub2.txt │ │ │ ├── test1.txt │ │ │ └── test2.txt │ │ ├── integration2 │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── subdir │ │ │ │ ├── sub1.txt │ │ │ │ └── subsubdir │ │ │ │ └── subsub1.txt │ │ ├── integration3 │ │ │ ├── .dockerignore │ │ │ ├── BUILD.md │ │ │ ├── COPYRIGHT │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README-secret.md │ │ │ ├── README.md │ │ │ ├── manifest │ │ │ ├── src │ │ │ │ ├── Makefile │ │ │ │ ├── cmd │ │ │ │ │ ├── Makefile │ │ │ │ │ └── main.in │ │ │ │ ├── etc │ │ │ │ │ ├── foo.conf │ │ │ │ │ └── foo.conf.d │ │ │ │ │ │ └── dropin.conf │ │ │ │ └── lib │ │ │ │ │ ├── Makefile │ │ │ │ │ └── framework.in │ │ │ ├── test1.txt │ │ │ ├── test2.txt │ │ │ └── test3.txt │ │ ├── minimal_test │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── stuff │ │ │ │ └── huge │ │ │ │ └── usr │ │ │ │ └── bin │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ └── populated │ │ │ ├── .dotfile-a.txt │ │ │ ├── file-a.txt │ │ │ ├── file-b.txt │ │ │ ├── file-c.txt │ │ │ ├── subdir-b │ │ │ └── .dotfile-b.txt │ │ │ ├── subdir-c │ │ │ ├── file-b.txt │ │ │ └── file-c.txt │ │ │ └── subdir-e │ │ │ ├── file-a.txt │ │ │ ├── file-b.txt │ │ │ ├── file-n.txt │ │ │ └── subdir-f │ │ │ ├── file-a.txt │ │ │ ├── file-n.txt │ │ │ ├── file-o.txt │ │ │ └── subdir-g │ │ │ └── subdir-b │ │ ├── env │ │ └── precedence │ │ │ └── Dockerfile │ │ ├── header-builtin │ │ └── Dockerfile │ │ ├── heredoc │ │ ├── Dockerfile.heredoc_copy │ │ └── file │ │ ├── mount-targets │ │ ├── Dockerfile │ │ ├── Dockerfile.mount │ │ └── true.go │ │ ├── mount │ │ ├── Dockerfile │ │ ├── file │ │ └── file2 │ │ ├── multistage │ │ └── copyback │ │ │ └── Dockerfile │ │ ├── overlapdirwithoutslash │ │ ├── Dockerfile │ │ └── existing │ │ │ └── etc │ │ │ └── file-in-existing-dir │ │ ├── overlapdirwithslash │ │ ├── Dockerfile │ │ └── existing │ │ │ └── etc │ │ │ └── file-in-existing-dir │ │ ├── replace │ │ └── symlink-with-directory │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile.2 │ │ │ ├── Dockerfile.3 │ │ │ ├── Dockerfile.4 │ │ │ ├── tree1 │ │ │ ├── directory │ │ │ │ └── file-in-directory │ │ │ └── maybe-directory │ │ │ └── tree2 │ │ │ └── maybe-directory │ │ │ └── file-in-maybe-directory │ │ ├── subdir │ │ └── subdir │ │ │ └── Dockerfile │ │ ├── tar-g │ │ ├── Dockerfile │ │ ├── content.sh │ │ ├── content.tar.gz │ │ └── content.txt │ │ ├── transientmount │ │ ├── Dockerfile │ │ ├── Dockerfile.env │ │ ├── file │ │ └── subdir │ │ │ └── file2 │ │ ├── volume │ │ ├── Dockerfile │ │ ├── file │ │ └── file2 │ │ ├── volumerun │ │ ├── Dockerfile │ │ ├── file │ │ ├── file2 │ │ └── file4 │ │ └── wildcard │ │ ├── Dockerfile │ │ └── dir2 │ │ ├── file.a │ │ ├── file.b │ │ ├── file.c │ │ └── file2.b ├── containers.bats ├── containers.conf ├── containers_conf.bats ├── copy.bats ├── copy │ └── copy.go ├── crash │ ├── crash_notunix.go │ └── crash_unix.go ├── deny.json ├── digest.bats ├── digest │ ├── README.md │ ├── make-v2s1 │ ├── make-v2s1-with-dups │ ├── make-v2s2 │ └── make-v2sN ├── docker.json ├── dumpspec │ ├── dumpspec.go │ ├── dumpspec_linux.go │ ├── dumpspec_notlinux.go │ ├── dumpspec_notunix.go │ ├── dumpspec_unix.go │ └── notes.md ├── formats.bats ├── from.bats ├── git-daemon │ ├── release-1.11-rhel.tar.gz │ ├── repo-with-containerfile-on-old-commit.tar.gz │ ├── repo.tar.gz │ └── subdirectory.tar.gz ├── help.bats ├── helpers.bash ├── helpers.bash.t ├── history.bats ├── images.bats ├── imgtype │ └── imgtype.go ├── inet │ └── inet.go ├── info.bats ├── inspect.bats ├── lists.bats ├── loglevel.bats ├── mkcw.bats ├── mount.bats ├── namespaces.bats ├── overlay.bats ├── passwd │ ├── README.md │ └── passwd.go ├── platforms.bats ├── policy.json ├── pull.bats ├── push.bats ├── registries-cached.conf ├── registries.bats ├── registries.conf ├── registries.conf.block ├── registries.conf.hub ├── rename.bats ├── rm.bats ├── rmi.bats ├── run.bats ├── sbom.bats ├── selinux.bats ├── serve │ └── serve.go ├── sign.bats ├── source.bats ├── squash.bats ├── ssh.bats ├── subscriptions.bats ├── tag.bats ├── test_buildah_authentication.sh ├── test_buildah_baseline.sh ├── test_buildah_build_rpm.sh ├── test_buildah_rpm.sh ├── test_runner.sh ├── testreport │ ├── testreport.go │ └── types │ │ └── types.go ├── tmt │ ├── system.fmf │ └── system.sh ├── tools │ ├── Makefile │ ├── go.mod │ ├── go.sum │ ├── tools.go │ └── vendor │ │ ├── github.com │ │ ├── cpuguy83 │ │ │ └── go-md2man │ │ │ │ └── v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── LICENSE.md │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── go-md2man.1.md │ │ │ │ ├── md2man.go │ │ │ │ └── md2man │ │ │ │ ├── md2man.go │ │ │ │ └── roff.go │ │ └── russross │ │ │ └── blackfriday │ │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── doc.go │ │ │ ├── entities.go │ │ │ ├── esc.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── markdown.go │ │ │ ├── node.go │ │ │ └── smartypants.go │ │ └── modules.txt ├── tutorial.bats ├── tutorial │ └── tutorial.go ├── umount.bats ├── validate │ ├── buildahimages-are-sane │ ├── pr-should-include-tests │ ├── pr-should-include-tests.t │ └── whitespace.sh └── wait │ ├── wait_notunix.go │ └── wait_unix.go ├── troubleshooting.md ├── unmount.go ├── util.go ├── util ├── types.go ├── util.go ├── util_test.go ├── util_unix.go ├── util_unsupported.go └── util_windows.go └── vendor ├── cyphar.com └── go-pathrs │ ├── .golangci.yml │ ├── COPYING │ ├── doc.go │ ├── handle_linux.go │ ├── internal │ ├── fdutils │ │ └── fd_linux.go │ └── libpathrs │ │ ├── error_unix.go │ │ └── libpathrs_linux.go │ ├── procfs │ └── procfs_linux.go │ ├── root_linux.go │ └── utils_linux.go ├── dario.cat └── mergo │ ├── .deepsource.toml │ ├── .gitignore │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.json │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── doc.go │ ├── map.go │ ├── merge.go │ └── mergo.go ├── github.com ├── Azure │ └── go-ansiterm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── constants.go │ │ ├── context.go │ │ ├── csi_entry_state.go │ │ ├── csi_param_state.go │ │ ├── escape_intermediate_state.go │ │ ├── escape_state.go │ │ ├── event_handler.go │ │ ├── ground_state.go │ │ ├── osc_string_state.go │ │ ├── parser.go │ │ ├── parser_action_helpers.go │ │ ├── parser_actions.go │ │ ├── states.go │ │ ├── utilities.go │ │ └── winterm │ │ ├── ansi.go │ │ ├── api.go │ │ ├── attr_translation.go │ │ ├── cursor_helpers.go │ │ ├── erase_helpers.go │ │ ├── scroll_helper.go │ │ ├── utilities.go │ │ └── win_event_handler.go ├── BurntSushi │ └── toml │ │ ├── .gitignore │ │ ├── COPYING │ │ ├── README.md │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── error.go │ │ ├── internal │ │ └── tz.go │ │ ├── lex.go │ │ ├── meta.go │ │ ├── parse.go │ │ ├── type_fields.go │ │ └── type_toml.go ├── Microsoft │ └── go-winio │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── backup.go │ │ ├── doc.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── hvsock.go │ │ ├── internal │ │ ├── fs │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── security.go │ │ │ └── zsyscall_windows.go │ │ ├── socket │ │ │ ├── rawaddr.go │ │ │ ├── socket.go │ │ │ └── zsyscall_windows.go │ │ └── stringbuffer │ │ │ └── wstring.go │ │ ├── pipe.go │ │ ├── pkg │ │ └── guid │ │ │ ├── guid.go │ │ │ ├── guid_nonwindows.go │ │ │ ├── guid_windows.go │ │ │ └── variant_string.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ └── zsyscall_windows.go ├── VividCortex │ └── ewma │ │ ├── .gitignore │ │ ├── .whitesource │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codecov.yml │ │ └── ewma.go ├── acarl005 │ └── stripansi │ │ ├── LICENSE │ │ ├── README.md │ │ └── stripansi.go ├── aead │ └── serpent │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── sbox_ref.go │ │ ├── serpent.go │ │ └── serpent_ref.go ├── chzyer │ └── readline │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansi_windows.go │ │ ├── complete.go │ │ ├── complete_helper.go │ │ ├── complete_segment.go │ │ ├── history.go │ │ ├── operation.go │ │ ├── password.go │ │ ├── rawreader_windows.go │ │ ├── readline.go │ │ ├── remote.go │ │ ├── runebuf.go │ │ ├── runes.go │ │ ├── search.go │ │ ├── std.go │ │ ├── std_windows.go │ │ ├── term.go │ │ ├── term_bsd.go │ │ ├── term_linux.go │ │ ├── term_nosyscall6.go │ │ ├── term_unix.go │ │ ├── term_windows.go │ │ ├── terminal.go │ │ ├── utils.go │ │ ├── utils_unix.go │ │ ├── utils_windows.go │ │ ├── vim.go │ │ └── windows_api.go ├── clipperhouse │ ├── stringish │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ └── interface.go │ └── uax29 │ │ └── v2 │ │ ├── LICENSE │ │ ├── graphemes │ │ ├── README.md │ │ ├── iterator.go │ │ ├── reader.go │ │ ├── splitfunc.go │ │ └── trie.go │ │ └── internal │ │ └── iterators │ │ └── iterator.go ├── containerd │ ├── errdefs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── pkg │ │ │ ├── LICENSE │ │ │ ├── errhttp │ │ │ │ └── http.go │ │ │ └── internal │ │ │ │ └── cause │ │ │ │ └── cause.go │ │ └── resolve.go │ ├── log │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── context.go │ ├── platforms │ │ ├── .gitattributes │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compare.go │ │ ├── cpuinfo.go │ │ ├── cpuinfo_linux.go │ │ ├── cpuinfo_other.go │ │ ├── database.go │ │ ├── defaults.go │ │ ├── defaults_darwin.go │ │ ├── defaults_freebsd.go │ │ ├── defaults_unix.go │ │ ├── defaults_windows.go │ │ ├── errors.go │ │ ├── platform_windows_compat.go │ │ └── platforms.go │ ├── stargz-snapshotter │ │ └── estargz │ │ │ ├── LICENSE │ │ │ ├── build.go │ │ │ ├── errorutil │ │ │ └── errors.go │ │ │ ├── estargz.go │ │ │ ├── gzip.go │ │ │ ├── testutil.go │ │ │ └── types.go │ └── typeurl │ │ └── v2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── types.go │ │ └── types_gogo.go ├── containernetworking │ ├── cni │ │ ├── LICENSE │ │ ├── libcni │ │ │ ├── api.go │ │ │ └── conf.go │ │ └── pkg │ │ │ ├── invoke │ │ │ ├── args.go │ │ │ ├── delegate.go │ │ │ ├── exec.go │ │ │ ├── find.go │ │ │ ├── os_unix.go │ │ │ ├── os_windows.go │ │ │ └── raw_exec.go │ │ │ ├── types │ │ │ ├── 100 │ │ │ │ └── types.go │ │ │ ├── 020 │ │ │ │ └── types.go │ │ │ ├── 040 │ │ │ │ └── types.go │ │ │ ├── args.go │ │ │ ├── create │ │ │ │ └── create.go │ │ │ ├── internal │ │ │ │ ├── convert.go │ │ │ │ └── create.go │ │ │ └── types.go │ │ │ ├── utils │ │ │ └── utils.go │ │ │ └── version │ │ │ ├── conf.go │ │ │ ├── plugin.go │ │ │ ├── reconcile.go │ │ │ └── version.go │ └── plugins │ │ ├── LICENSE │ │ └── pkg │ │ └── ns │ │ ├── README.md │ │ └── ns_linux.go ├── containers │ ├── libtrust │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── certificates.go │ │ ├── doc.go │ │ ├── ec_key.go │ │ ├── ec_key_no_openssl.go │ │ ├── ec_key_openssl.go │ │ ├── filter.go │ │ ├── hash.go │ │ ├── jsonsign.go │ │ ├── key.go │ │ ├── key_files.go │ │ ├── key_manager.go │ │ ├── rsa_key.go │ │ └── util.go │ ├── luksy │ │ ├── .cirrus.yml │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── decrypt.go │ │ ├── encrypt.go │ │ ├── encryption.go │ │ ├── luks.go │ │ ├── tune.go │ │ ├── v1header.go │ │ ├── v2header.go │ │ └── v2json.go │ └── ocicrypt │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── ADOPTERS.md │ │ ├── CODE-OF-CONDUCT.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── blockcipher │ │ ├── blockcipher.go │ │ └── blockcipher_aes_ctr.go │ │ ├── config │ │ ├── config.go │ │ ├── constructors.go │ │ ├── keyprovider-config │ │ │ └── config.go │ │ └── pkcs11config │ │ │ └── config.go │ │ ├── crypto │ │ └── pkcs11 │ │ │ ├── common.go │ │ │ ├── pkcs11helpers.go │ │ │ ├── pkcs11helpers_nocgo.go │ │ │ └── utils.go │ │ ├── encryption.go │ │ ├── gpg.go │ │ ├── gpgvault.go │ │ ├── helpers │ │ └── parse_helpers.go │ │ ├── keywrap │ │ ├── jwe │ │ │ └── keywrapper_jwe.go │ │ ├── keyprovider │ │ │ └── keyprovider.go │ │ ├── keywrap.go │ │ ├── pgp │ │ │ └── keywrapper_gpg.go │ │ ├── pkcs11 │ │ │ └── keywrapper_pkcs11.go │ │ └── pkcs7 │ │ │ └── keywrapper_pkcs7.go │ │ ├── reader.go │ │ ├── spec │ │ └── spec.go │ │ └── utils │ │ ├── delayedreader.go │ │ ├── ioutils.go │ │ ├── keyprovider │ │ ├── keyprovider.pb.go │ │ └── keyprovider.proto │ │ ├── testing.go │ │ └── utils.go ├── coreos │ └── go-systemd │ │ └── v22 │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── dbus │ │ ├── dbus.go │ │ ├── methods.go │ │ ├── properties.go │ │ ├── set.go │ │ ├── subscription.go │ │ └── subscription_set.go ├── cyberphone │ └── json-canonicalization │ │ ├── LICENSE │ │ └── go │ │ └── src │ │ └── webpki.org │ │ └── jsoncanonicalizer │ │ ├── es6numfmt.go │ │ └── jsoncanonicalizer.go ├── cyphar │ └── filepath-securejoin │ │ ├── .golangci.yml │ │ ├── CHANGELOG.md │ │ ├── COPYING.md │ │ ├── LICENSE.BSD │ │ ├── LICENSE.MPL-2.0 │ │ ├── README.md │ │ ├── VERSION │ │ ├── codecov.yml │ │ ├── doc.go │ │ ├── internal │ │ └── consts │ │ │ └── consts.go │ │ ├── join.go │ │ ├── pathrs-lite │ │ ├── README.md │ │ ├── doc.go │ │ ├── internal │ │ │ ├── assert │ │ │ │ └── assert.go │ │ │ ├── errors_linux.go │ │ │ ├── fd │ │ │ │ ├── at_linux.go │ │ │ │ ├── fd.go │ │ │ │ ├── fd_linux.go │ │ │ │ ├── mount_linux.go │ │ │ │ └── openat2_linux.go │ │ │ ├── gocompat │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── gocompat_atomic_go119.go │ │ │ │ ├── gocompat_atomic_unsupported.go │ │ │ │ ├── gocompat_errors_go120.go │ │ │ │ ├── gocompat_errors_unsupported.go │ │ │ │ ├── gocompat_generics_go121.go │ │ │ │ └── gocompat_generics_unsupported.go │ │ │ ├── gopathrs │ │ │ │ ├── doc.go │ │ │ │ ├── lookup_linux.go │ │ │ │ ├── mkdir_linux.go │ │ │ │ ├── open_linux.go │ │ │ │ └── openat2_linux.go │ │ │ ├── kernelversion │ │ │ │ └── kernel_linux.go │ │ │ ├── linux │ │ │ │ ├── doc.go │ │ │ │ ├── mount_linux.go │ │ │ │ └── openat2_linux.go │ │ │ └── procfs │ │ │ │ ├── procfs_linux.go │ │ │ │ └── procfs_lookup_linux.go │ │ ├── mkdir.go │ │ ├── mkdir_libpathrs.go │ │ ├── mkdir_purego.go │ │ ├── open.go │ │ ├── open_libpathrs.go │ │ ├── open_purego.go │ │ └── procfs │ │ │ ├── procfs_libpathrs.go │ │ │ └── procfs_purego.go │ │ └── vfs.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── disiqueira │ └── gotree │ │ └── v3 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _config.yml │ │ ├── gotree-logo.png │ │ └── gotree.go ├── distribution │ └── reference │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── distribution-logo.svg │ │ ├── helpers.go │ │ ├── normalize.go │ │ ├── reference.go │ │ ├── regexp.go │ │ └── sort.go ├── docker │ ├── distribution │ │ ├── LICENSE │ │ └── registry │ │ │ └── api │ │ │ ├── errcode │ │ │ ├── errors.go │ │ │ ├── handler.go │ │ │ └── register.go │ │ │ └── v2 │ │ │ ├── descriptors.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── headerparser.go │ │ │ ├── routes.go │ │ │ └── urls.go │ ├── docker-credential-helpers │ │ ├── LICENSE │ │ ├── client │ │ │ ├── client.go │ │ │ └── command.go │ │ └── credentials │ │ │ ├── credentials.go │ │ │ ├── error.go │ │ │ ├── helper.go │ │ │ └── version.go │ ├── docker │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── api │ │ │ ├── README.md │ │ │ ├── common.go │ │ │ ├── swagger-gen.yaml │ │ │ ├── swagger.yaml │ │ │ └── types │ │ │ │ ├── blkiodev │ │ │ │ └── blkio.go │ │ │ │ ├── build │ │ │ │ ├── build.go │ │ │ │ ├── cache.go │ │ │ │ └── disk_usage.go │ │ │ │ ├── checkpoint │ │ │ │ ├── list.go │ │ │ │ └── options.go │ │ │ │ ├── client.go │ │ │ │ ├── common │ │ │ │ └── id_response.go │ │ │ │ ├── container │ │ │ │ ├── change_type.go │ │ │ │ ├── change_types.go │ │ │ │ ├── commit.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── create_request.go │ │ │ │ ├── create_response.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── errors.go │ │ │ │ ├── exec.go │ │ │ │ ├── filesystem_change.go │ │ │ │ ├── health.go │ │ │ │ ├── hostconfig.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ ├── hostconfig_windows.go │ │ │ │ ├── network_settings.go │ │ │ │ ├── options.go │ │ │ │ ├── port.go │ │ │ │ ├── state.go │ │ │ │ ├── stats.go │ │ │ │ ├── top_response.go │ │ │ │ ├── update_response.go │ │ │ │ ├── wait_exit_error.go │ │ │ │ ├── wait_response.go │ │ │ │ └── waitcondition.go │ │ │ │ ├── error_response.go │ │ │ │ ├── error_response_ext.go │ │ │ │ ├── events │ │ │ │ └── events.go │ │ │ │ ├── filters │ │ │ │ ├── errors.go │ │ │ │ ├── filters_deprecated.go │ │ │ │ └── parse.go │ │ │ │ ├── image │ │ │ │ ├── delete_response.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── image.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── manifest.go │ │ │ │ ├── opts.go │ │ │ │ └── summary.go │ │ │ │ ├── mount │ │ │ │ └── mount.go │ │ │ │ ├── network │ │ │ │ ├── create_response.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── ipam.go │ │ │ │ └── network.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_device.go │ │ │ │ ├── plugin_env.go │ │ │ │ ├── plugin_interface_type.go │ │ │ │ ├── plugin_mount.go │ │ │ │ ├── plugin_responses.go │ │ │ │ ├── registry │ │ │ │ ├── authconfig.go │ │ │ │ ├── authenticate.go │ │ │ │ ├── registry.go │ │ │ │ └── search.go │ │ │ │ ├── storage │ │ │ │ └── driver_data.go │ │ │ │ ├── strslice │ │ │ │ └── strslice.go │ │ │ │ ├── swarm │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── runtime.go │ │ │ │ ├── runtime │ │ │ │ │ └── runtime.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_create_response.go │ │ │ │ ├── service_update_response.go │ │ │ │ ├── swarm.go │ │ │ │ └── task.go │ │ │ │ ├── system │ │ │ │ ├── info.go │ │ │ │ ├── runtime.go │ │ │ │ └── security_opts.go │ │ │ │ ├── time │ │ │ │ └── timestamp.go │ │ │ │ ├── types.go │ │ │ │ ├── types_deprecated.go │ │ │ │ ├── versions │ │ │ │ └── compare.go │ │ │ │ └── volume │ │ │ │ ├── cluster_volume.go │ │ │ │ ├── create_options.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── list_response.go │ │ │ │ ├── options.go │ │ │ │ ├── volume.go │ │ │ │ └── volume_update.go │ │ ├── client │ │ │ ├── README.md │ │ │ ├── build_cancel.go │ │ │ ├── build_prune.go │ │ │ ├── checkpoint.go │ │ │ ├── checkpoint_create.go │ │ │ ├── checkpoint_delete.go │ │ │ ├── checkpoint_list.go │ │ │ ├── client.go │ │ │ ├── client_deprecated.go │ │ │ ├── client_interfaces.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── config_create.go │ │ │ ├── config_inspect.go │ │ │ ├── config_list.go │ │ │ ├── config_remove.go │ │ │ ├── config_update.go │ │ │ ├── container_attach.go │ │ │ ├── container_commit.go │ │ │ ├── container_copy.go │ │ │ ├── container_create.go │ │ │ ├── container_diff.go │ │ │ ├── container_exec.go │ │ │ ├── container_export.go │ │ │ ├── container_inspect.go │ │ │ ├── container_kill.go │ │ │ ├── container_list.go │ │ │ ├── container_logs.go │ │ │ ├── container_pause.go │ │ │ ├── container_prune.go │ │ │ ├── container_remove.go │ │ │ ├── container_rename.go │ │ │ ├── container_resize.go │ │ │ ├── container_restart.go │ │ │ ├── container_start.go │ │ │ ├── container_stats.go │ │ │ ├── container_stop.go │ │ │ ├── container_top.go │ │ │ ├── container_unpause.go │ │ │ ├── container_update.go │ │ │ ├── container_wait.go │ │ │ ├── disk_usage.go │ │ │ ├── distribution_inspect.go │ │ │ ├── envvars.go │ │ │ ├── errors.go │ │ │ ├── events.go │ │ │ ├── hijack.go │ │ │ ├── image_build.go │ │ │ ├── image_create.go │ │ │ ├── image_history.go │ │ │ ├── image_history_opts.go │ │ │ ├── image_import.go │ │ │ ├── image_inspect.go │ │ │ ├── image_inspect_opts.go │ │ │ ├── image_list.go │ │ │ ├── image_load.go │ │ │ ├── image_load_opts.go │ │ │ ├── image_prune.go │ │ │ ├── image_pull.go │ │ │ ├── image_push.go │ │ │ ├── image_remove.go │ │ │ ├── image_save.go │ │ │ ├── image_save_opts.go │ │ │ ├── image_search.go │ │ │ ├── image_tag.go │ │ │ ├── info.go │ │ │ ├── login.go │ │ │ ├── network_connect.go │ │ │ ├── network_create.go │ │ │ ├── network_disconnect.go │ │ │ ├── network_inspect.go │ │ │ ├── network_list.go │ │ │ ├── network_prune.go │ │ │ ├── network_remove.go │ │ │ ├── node_inspect.go │ │ │ ├── node_list.go │ │ │ ├── node_remove.go │ │ │ ├── node_update.go │ │ │ ├── options.go │ │ │ ├── ping.go │ │ │ ├── plugin_create.go │ │ │ ├── plugin_disable.go │ │ │ ├── plugin_enable.go │ │ │ ├── plugin_inspect.go │ │ │ ├── plugin_install.go │ │ │ ├── plugin_list.go │ │ │ ├── plugin_push.go │ │ │ ├── plugin_remove.go │ │ │ ├── plugin_set.go │ │ │ ├── plugin_upgrade.go │ │ │ ├── request.go │ │ │ ├── secret_create.go │ │ │ ├── secret_inspect.go │ │ │ ├── secret_list.go │ │ │ ├── secret_remove.go │ │ │ ├── secret_update.go │ │ │ ├── service_create.go │ │ │ ├── service_inspect.go │ │ │ ├── service_list.go │ │ │ ├── service_logs.go │ │ │ ├── service_remove.go │ │ │ ├── service_update.go │ │ │ ├── swarm_get_unlock_key.go │ │ │ ├── swarm_init.go │ │ │ ├── swarm_inspect.go │ │ │ ├── swarm_join.go │ │ │ ├── swarm_leave.go │ │ │ ├── swarm_unlock.go │ │ │ ├── swarm_update.go │ │ │ ├── task_inspect.go │ │ │ ├── task_list.go │ │ │ ├── task_logs.go │ │ │ ├── utils.go │ │ │ ├── version.go │ │ │ ├── volume_create.go │ │ │ ├── volume_inspect.go │ │ │ ├── volume_list.go │ │ │ ├── volume_prune.go │ │ │ ├── volume_remove.go │ │ │ └── volume_update.go │ │ └── pkg │ │ │ ├── homedir │ │ │ ├── homedir.go │ │ │ ├── homedir_linux.go │ │ │ └── homedir_others.go │ │ │ ├── jsonmessage │ │ │ └── jsonmessage.go │ │ │ └── stdcopy │ │ │ └── stdcopy.go │ ├── go-connections │ │ ├── LICENSE │ │ ├── nat │ │ │ ├── nat.go │ │ │ ├── parse.go │ │ │ └── sort.go │ │ ├── sockets │ │ │ ├── inmem_socket.go │ │ │ ├── proxy.go │ │ │ ├── sockets.go │ │ │ ├── sockets_unix.go │ │ │ ├── sockets_windows.go │ │ │ ├── tcp_socket.go │ │ │ ├── unix_socket.go │ │ │ ├── unix_socket_unix.go │ │ │ └── unix_socket_windows.go │ │ └── tlsconfig │ │ │ ├── certpool.go │ │ │ └── config.go │ └── go-units │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── circle.yml │ │ ├── duration.go │ │ ├── size.go │ │ └── ulimit.go ├── felixge │ └── httpsnoop │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── capture_metrics.go │ │ ├── docs.go │ │ ├── wrap_generated_gteq_1.8.go │ │ └── wrap_generated_lt_1.8.go ├── fsnotify │ └── fsnotify │ │ ├── .cirrus.yml │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backend_fen.go │ │ ├── backend_inotify.go │ │ ├── backend_kqueue.go │ │ ├── backend_other.go │ │ ├── backend_windows.go │ │ ├── fsnotify.go │ │ ├── internal │ │ ├── darwin.go │ │ ├── debug_darwin.go │ │ ├── debug_dragonfly.go │ │ ├── debug_freebsd.go │ │ ├── debug_kqueue.go │ │ ├── debug_linux.go │ │ ├── debug_netbsd.go │ │ ├── debug_openbsd.go │ │ ├── debug_solaris.go │ │ ├── debug_windows.go │ │ ├── freebsd.go │ │ ├── internal.go │ │ ├── unix.go │ │ ├── unix2.go │ │ └── windows.go │ │ ├── shared.go │ │ ├── staticcheck.conf │ │ ├── system_bsd.go │ │ └── system_darwin.go ├── fsouza │ └── go-dockerclient │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── DOCKER-LICENSE │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── auth.go │ │ ├── change.go │ │ ├── client.go │ │ ├── client_unix.go │ │ ├── client_windows.go │ │ ├── container.go │ │ ├── container_archive.go │ │ ├── container_attach.go │ │ ├── container_changes.go │ │ ├── container_commit.go │ │ ├── container_copy.go │ │ ├── container_create.go │ │ ├── container_export.go │ │ ├── container_inspect.go │ │ ├── container_kill.go │ │ ├── container_list.go │ │ ├── container_logs.go │ │ ├── container_pause.go │ │ ├── container_prune.go │ │ ├── container_remove.go │ │ ├── container_rename.go │ │ ├── container_resize.go │ │ ├── container_restart.go │ │ ├── container_start.go │ │ ├── container_stats.go │ │ ├── container_stop.go │ │ ├── container_top.go │ │ ├── container_unpause.go │ │ ├── container_update.go │ │ ├── container_wait.go │ │ ├── distribution.go │ │ ├── env.go │ │ ├── event.go │ │ ├── exec.go │ │ ├── image.go │ │ ├── misc.go │ │ ├── network.go │ │ ├── plugin.go │ │ ├── registry_auth.go │ │ ├── signal.go │ │ ├── swarm.go │ │ ├── swarm_configs.go │ │ ├── swarm_node.go │ │ ├── swarm_secrets.go │ │ ├── swarm_service.go │ │ ├── swarm_task.go │ │ ├── system.go │ │ ├── tar.go │ │ ├── tls.go │ │ └── volume.go ├── go-jose │ └── go-jose │ │ └── v4 │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── asymmetric.go │ │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── concat_kdf.go │ │ ├── ecdh_es.go │ │ └── key_wrap.go │ │ ├── crypter.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── encode.go │ │ ├── indent.go │ │ ├── scanner.go │ │ ├── stream.go │ │ └── tags.go │ │ ├── jwe.go │ │ ├── jwk.go │ │ ├── jws.go │ │ ├── opaque.go │ │ ├── shared.go │ │ ├── signing.go │ │ └── symmetric.go ├── go-logr │ ├── logr │ │ ├── .golangci.yaml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── context.go │ │ ├── context_noslog.go │ │ ├── context_slog.go │ │ ├── discard.go │ │ ├── funcr │ │ │ ├── funcr.go │ │ │ └── slogsink.go │ │ ├── logr.go │ │ ├── sloghandler.go │ │ ├── slogr.go │ │ └── slogsink.go │ └── stdr │ │ ├── LICENSE │ │ ├── README.md │ │ └── stdr.go ├── godbus │ └── dbus │ │ └── v5 │ │ ├── .cirrus.yml │ │ ├── .golangci.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── auth.go │ │ ├── auth_anonymous.go │ │ ├── auth_default_other.go │ │ ├── auth_default_windows.go │ │ ├── auth_external.go │ │ ├── auth_sha1_windows.go │ │ ├── call.go │ │ ├── conn.go │ │ ├── conn_darwin.go │ │ ├── conn_other.go │ │ ├── conn_unix.go │ │ ├── conn_windows.go │ │ ├── dbus.go │ │ ├── decoder.go │ │ ├── default_handler.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── escape.go │ │ ├── export.go │ │ ├── match.go │ │ ├── message.go │ │ ├── object.go │ │ ├── sequence.go │ │ ├── sequential_handler.go │ │ ├── server_interfaces.go │ │ ├── sig.go │ │ ├── transport_darwin.go │ │ ├── transport_generic.go │ │ ├── transport_nonce_tcp.go │ │ ├── transport_tcp.go │ │ ├── transport_unix.go │ │ ├── transport_unixcred_dragonfly.go │ │ ├── transport_unixcred_freebsd.go │ │ ├── transport_unixcred_linux.go │ │ ├── transport_unixcred_netbsd.go │ │ ├── transport_unixcred_openbsd.go │ │ ├── transport_zos.go │ │ ├── variant.go │ │ ├── variant_lexer.go │ │ └── variant_parser.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go ├── golang │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go ├── google │ ├── go-containerregistry │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── name │ │ │ ├── README.md │ │ │ ├── check.go │ │ │ ├── digest.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── options.go │ │ │ ├── ref.go │ │ │ ├── registry.go │ │ │ ├── repository.go │ │ │ └── tag.go │ │ │ └── v1 │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── image.go │ │ │ ├── index.go │ │ │ ├── layer.go │ │ │ ├── manifest.go │ │ │ ├── platform.go │ │ │ ├── progress.go │ │ │ ├── types │ │ │ └── types.go │ │ │ └── zz_deepcopy_generated.go │ ├── go-intervals │ │ ├── LICENSE │ │ └── intervalset │ │ │ ├── intervalset.go │ │ │ └── intervalset_immutable.go │ └── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── null.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ ├── version4.go │ │ ├── version6.go │ │ └── version7.go ├── gorilla │ └── mux │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── middleware.go │ │ ├── mux.go │ │ ├── regexp.go │ │ ├── route.go │ │ └── test_helpers.go ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ └── go-multierror │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── group.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ └── trap_windows.go ├── jinzhu │ └── copier │ │ ├── .gitignore │ │ ├── License │ │ ├── README.md │ │ ├── copier.go │ │ └── errors.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── klauspost │ ├── compress │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── compressible.go │ │ ├── flate │ │ │ ├── deflate.go │ │ │ ├── dict_decoder.go │ │ │ ├── fast_encoder.go │ │ │ ├── huffman_bit_writer.go │ │ │ ├── huffman_code.go │ │ │ ├── huffman_sortByFreq.go │ │ │ ├── huffman_sortByLiteral.go │ │ │ ├── inflate.go │ │ │ ├── inflate_gen.go │ │ │ ├── level1.go │ │ │ ├── level2.go │ │ │ ├── level3.go │ │ │ ├── level4.go │ │ │ ├── level5.go │ │ │ ├── level6.go │ │ │ ├── matchlen_generic.go │ │ │ ├── regmask_amd64.go │ │ │ ├── regmask_other.go │ │ │ ├── stateless.go │ │ │ └── token.go │ │ ├── fse │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── bytereader.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ └── fse.go │ │ ├── gen.sh │ │ ├── huff0 │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── compress.go │ │ │ ├── decompress.go │ │ │ ├── decompress_amd64.go │ │ │ ├── decompress_amd64.s │ │ │ ├── decompress_generic.go │ │ │ └── huff0.go │ │ ├── internal │ │ │ ├── cpuinfo │ │ │ │ ├── cpuinfo.go │ │ │ │ ├── cpuinfo_amd64.go │ │ │ │ └── cpuinfo_amd64.s │ │ │ ├── le │ │ │ │ ├── le.go │ │ │ │ ├── unsafe_disabled.go │ │ │ │ └── unsafe_enabled.go │ │ │ └── snapref │ │ │ │ ├── LICENSE │ │ │ │ ├── decode.go │ │ │ │ ├── decode_other.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_other.go │ │ │ │ └── snappy.go │ │ ├── s2sx.mod │ │ ├── s2sx.sum │ │ └── zstd │ │ │ ├── README.md │ │ │ ├── bitreader.go │ │ │ ├── bitwriter.go │ │ │ ├── blockdec.go │ │ │ ├── blockenc.go │ │ │ ├── blocktype_string.go │ │ │ ├── bytebuf.go │ │ │ ├── bytereader.go │ │ │ ├── decodeheader.go │ │ │ ├── decoder.go │ │ │ ├── decoder_options.go │ │ │ ├── dict.go │ │ │ ├── enc_base.go │ │ │ ├── enc_best.go │ │ │ ├── enc_better.go │ │ │ ├── enc_dfast.go │ │ │ ├── enc_fast.go │ │ │ ├── encoder.go │ │ │ ├── encoder_options.go │ │ │ ├── framedec.go │ │ │ ├── frameenc.go │ │ │ ├── fse_decoder.go │ │ │ ├── fse_decoder_amd64.go │ │ │ ├── fse_decoder_amd64.s │ │ │ ├── fse_decoder_generic.go │ │ │ ├── fse_encoder.go │ │ │ ├── fse_predefined.go │ │ │ ├── hash.go │ │ │ ├── history.go │ │ │ ├── internal │ │ │ └── xxhash │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── xxhash.go │ │ │ │ ├── xxhash_amd64.s │ │ │ │ ├── xxhash_arm64.s │ │ │ │ ├── xxhash_asm.go │ │ │ │ ├── xxhash_other.go │ │ │ │ └── xxhash_safe.go │ │ │ ├── matchlen_amd64.go │ │ │ ├── matchlen_amd64.s │ │ │ ├── matchlen_generic.go │ │ │ ├── seqdec.go │ │ │ ├── seqdec_amd64.go │ │ │ ├── seqdec_amd64.s │ │ │ ├── seqdec_generic.go │ │ │ ├── seqenc.go │ │ │ ├── simple_go124.go │ │ │ ├── snappy.go │ │ │ ├── zip.go │ │ │ └── zstd.go │ └── pgzip │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── GO_LICENSE │ │ ├── LICENSE │ │ ├── README.md │ │ ├── gunzip.go │ │ └── gzip.go ├── manifoldco │ └── promptui │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── codes.go │ │ ├── cursor.go │ │ ├── keycodes.go │ │ ├── keycodes_other.go │ │ ├── keycodes_windows.go │ │ ├── list │ │ └── list.go │ │ ├── prompt.go │ │ ├── promptui.go │ │ ├── screenbuf │ │ └── screenbuf.go │ │ ├── select.go │ │ ├── styles.go │ │ └── styles_windows.go ├── mattn │ ├── go-runewidth │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchstat.txt │ │ ├── new.txt │ │ ├── old.txt │ │ ├── runewidth.go │ │ ├── runewidth_appengine.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ ├── runewidth_table.go │ │ └── runewidth_windows.go │ ├── go-shellwords │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.test.sh │ │ ├── shellwords.go │ │ ├── util_posix.go │ │ └── util_windows.go │ └── go-sqlite3 │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── callback.go │ │ ├── convert.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── sqlite3-binding.c │ │ ├── sqlite3-binding.h │ │ ├── sqlite3.go │ │ ├── sqlite3_context.go │ │ ├── sqlite3_func_crypt.go │ │ ├── sqlite3_go18.go │ │ ├── sqlite3_libsqlite3.go │ │ ├── sqlite3_load_extension.go │ │ ├── sqlite3_load_extension_omit.go │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ ├── sqlite3_opt_app_armor.go │ │ ├── sqlite3_opt_column_metadata.go │ │ ├── sqlite3_opt_foreign_keys.go │ │ ├── sqlite3_opt_fts5.go │ │ ├── sqlite3_opt_icu.go │ │ ├── sqlite3_opt_introspect.go │ │ ├── sqlite3_opt_math_functions.go │ │ ├── sqlite3_opt_os_trace.go │ │ ├── sqlite3_opt_preupdate.go │ │ ├── sqlite3_opt_preupdate_hook.go │ │ ├── sqlite3_opt_preupdate_omit.go │ │ ├── sqlite3_opt_secure_delete.go │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ ├── sqlite3_opt_serialize.go │ │ ├── sqlite3_opt_serialize_omit.go │ │ ├── sqlite3_opt_stat4.go │ │ ├── sqlite3_opt_unlock_notify.c │ │ ├── sqlite3_opt_unlock_notify.go │ │ ├── sqlite3_opt_userauth.go │ │ ├── sqlite3_opt_userauth_omit.go │ │ ├── sqlite3_opt_vacuum_full.go │ │ ├── sqlite3_opt_vacuum_incr.go │ │ ├── sqlite3_opt_vtable.go │ │ ├── sqlite3_other.go │ │ ├── sqlite3_solaris.go │ │ ├── sqlite3_trace.go │ │ ├── sqlite3_type.go │ │ ├── sqlite3_usleep_windows.go │ │ ├── sqlite3_windows.go │ │ ├── sqlite3ext.h │ │ └── static_mock.go ├── miekg │ └── pkcs11 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile.release │ │ ├── README.md │ │ ├── error.go │ │ ├── hsm.db │ │ ├── params.go │ │ ├── pkcs11.go │ │ ├── pkcs11.h │ │ ├── pkcs11f.h │ │ ├── pkcs11go.h │ │ ├── pkcs11t.h │ │ ├── release.go │ │ ├── softhsm.conf │ │ ├── softhsm2.conf │ │ ├── types.go │ │ ├── vendor.go │ │ └── zconst.go ├── mistifyio │ └── go-zfs │ │ └── v4 │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .yamllint │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── Vagrantfile │ │ ├── error.go │ │ ├── lint.mk │ │ ├── rules.mk │ │ ├── shell.nix │ │ ├── utils.go │ │ ├── utils_notsolaris.go │ │ ├── utils_solaris.go │ │ ├── zfs.go │ │ └── zpool.go ├── moby │ ├── buildkit │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── frontend │ │ │ └── dockerfile │ │ │ │ ├── command │ │ │ │ └── command.go │ │ │ │ ├── parser │ │ │ │ ├── directives.go │ │ │ │ ├── errors.go │ │ │ │ ├── line_parsers.go │ │ │ │ ├── parser.go │ │ │ │ └── split_command.go │ │ │ │ └── shell │ │ │ │ ├── envVarTest │ │ │ │ ├── equal_env_unix.go │ │ │ │ ├── equal_env_windows.go │ │ │ │ ├── lex.go │ │ │ │ └── wordsTest │ │ └── util │ │ │ └── stack │ │ │ ├── compress.go │ │ │ ├── stack.go │ │ │ ├── stack.pb.go │ │ │ ├── stack.proto │ │ │ └── stack_vtproto.pb.go │ ├── docker-image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ │ └── v1 │ │ │ └── image.go │ ├── go-archive │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── archive.go │ │ ├── archive_linux.go │ │ ├── archive_other.go │ │ ├── archive_unix.go │ │ ├── archive_windows.go │ │ ├── changes.go │ │ ├── changes_linux.go │ │ ├── changes_other.go │ │ ├── changes_unix.go │ │ ├── changes_windows.go │ │ ├── compression │ │ │ ├── compression.go │ │ │ └── compression_detect.go │ │ ├── copy.go │ │ ├── copy_unix.go │ │ ├── copy_windows.go │ │ ├── dev_freebsd.go │ │ ├── dev_unix.go │ │ ├── diff.go │ │ ├── diff_unix.go │ │ ├── diff_windows.go │ │ ├── path.go │ │ ├── path_unix.go │ │ ├── path_windows.go │ │ ├── tarheader │ │ │ ├── tarheader.go │ │ │ ├── tarheader_unix.go │ │ │ └── tarheader_windows.go │ │ ├── time.go │ │ ├── time_nonwindows.go │ │ ├── time_windows.go │ │ ├── whiteouts.go │ │ ├── wrap.go │ │ ├── xattr_supported.go │ │ ├── xattr_supported_linux.go │ │ ├── xattr_supported_unix.go │ │ └── xattr_unsupported.go │ ├── moby │ │ ├── api │ │ │ ├── LICENSE │ │ │ └── types │ │ │ │ ├── blkiodev │ │ │ │ └── blkio.go │ │ │ │ ├── build │ │ │ │ ├── build.go │ │ │ │ ├── cache.go │ │ │ │ └── disk_usage.go │ │ │ │ ├── checkpoint │ │ │ │ ├── create_request.go │ │ │ │ └── list.go │ │ │ │ ├── common │ │ │ │ ├── error_response.go │ │ │ │ ├── error_response_ext.go │ │ │ │ └── id_response.go │ │ │ │ ├── container │ │ │ │ ├── change_type.go │ │ │ │ ├── change_types.go │ │ │ │ ├── commit.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── create_request.go │ │ │ │ ├── create_response.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── errors.go │ │ │ │ ├── exec.go │ │ │ │ ├── exec_create_request.go │ │ │ │ ├── exec_start_request.go │ │ │ │ ├── filesystem_change.go │ │ │ │ ├── health.go │ │ │ │ ├── hostconfig.go │ │ │ │ ├── hostconfig_unix.go │ │ │ │ ├── hostconfig_windows.go │ │ │ │ ├── network_settings.go │ │ │ │ ├── port_summary.go │ │ │ │ ├── state.go │ │ │ │ ├── stats.go │ │ │ │ ├── top_response.go │ │ │ │ ├── update_response.go │ │ │ │ ├── wait_exit_error.go │ │ │ │ ├── wait_response.go │ │ │ │ └── waitcondition.go │ │ │ │ ├── events │ │ │ │ └── events.go │ │ │ │ ├── image │ │ │ │ ├── delete_response.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── image.go │ │ │ │ ├── image_history.go │ │ │ │ ├── image_inspect.go │ │ │ │ ├── manifest.go │ │ │ │ └── summary.go │ │ │ │ ├── jsonstream │ │ │ │ ├── json_error.go │ │ │ │ ├── message.go │ │ │ │ └── progress.go │ │ │ │ ├── mount │ │ │ │ └── mount.go │ │ │ │ ├── network │ │ │ │ ├── config_reference.go │ │ │ │ ├── connect_request.go │ │ │ │ ├── create_response.go │ │ │ │ ├── disconnect_request.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_resource.go │ │ │ │ ├── hwaddr.go │ │ │ │ ├── inspect.go │ │ │ │ ├── ipam.go │ │ │ │ ├── ipam_status.go │ │ │ │ ├── network.go │ │ │ │ ├── network_types.go │ │ │ │ ├── peer_info.go │ │ │ │ ├── port.go │ │ │ │ ├── service_info.go │ │ │ │ ├── status.go │ │ │ │ ├── subnet_status.go │ │ │ │ ├── summary.go │ │ │ │ └── task.go │ │ │ │ ├── plugin │ │ │ │ ├── .gitignore │ │ │ │ ├── capability.go │ │ │ │ ├── device.go │ │ │ │ ├── env.go │ │ │ │ ├── mount.go │ │ │ │ ├── plugin.go │ │ │ │ └── plugin_responses.go │ │ │ │ ├── registry │ │ │ │ ├── auth_response.go │ │ │ │ ├── authconfig.go │ │ │ │ ├── registry.go │ │ │ │ └── search.go │ │ │ │ ├── storage │ │ │ │ ├── driver_data.go │ │ │ │ ├── root_f_s_storage.go │ │ │ │ ├── root_f_s_storage_snapshot.go │ │ │ │ └── storage.go │ │ │ │ ├── swarm │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── container.go │ │ │ │ ├── network.go │ │ │ │ ├── node.go │ │ │ │ ├── runtime.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_create_response.go │ │ │ │ ├── service_update_response.go │ │ │ │ ├── swarm.go │ │ │ │ └── task.go │ │ │ │ ├── system │ │ │ │ ├── disk_usage.go │ │ │ │ ├── info.go │ │ │ │ ├── runtime.go │ │ │ │ └── version_response.go │ │ │ │ ├── types.go │ │ │ │ └── volume │ │ │ │ ├── cluster_volume.go │ │ │ │ ├── create_request.go │ │ │ │ ├── disk_usage.go │ │ │ │ ├── list_response.go │ │ │ │ ├── prune_report.go │ │ │ │ └── volume.go │ │ └── client │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── build_cancel.go │ │ │ ├── build_prune.go │ │ │ ├── checkpoint_create.go │ │ │ ├── checkpoint_list.go │ │ │ ├── checkpoint_remove.go │ │ │ ├── client.go │ │ │ ├── client_interfaces.go │ │ │ ├── client_options.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── config_create.go │ │ │ ├── config_inspect.go │ │ │ ├── config_list.go │ │ │ ├── config_remove.go │ │ │ ├── config_update.go │ │ │ ├── container_attach.go │ │ │ ├── container_commit.go │ │ │ ├── container_copy.go │ │ │ ├── container_create.go │ │ │ ├── container_create_opts.go │ │ │ ├── container_diff.go │ │ │ ├── container_diff_opts.go │ │ │ ├── container_exec.go │ │ │ ├── container_export.go │ │ │ ├── container_inspect.go │ │ │ ├── container_kill.go │ │ │ ├── container_list.go │ │ │ ├── container_logs.go │ │ │ ├── container_pause.go │ │ │ ├── container_prune.go │ │ │ ├── container_remove.go │ │ │ ├── container_rename.go │ │ │ ├── container_resize.go │ │ │ ├── container_restart.go │ │ │ ├── container_start.go │ │ │ ├── container_stats.go │ │ │ ├── container_stop.go │ │ │ ├── container_top.go │ │ │ ├── container_unpause.go │ │ │ ├── container_update.go │ │ │ ├── container_wait.go │ │ │ ├── distribution_inspect.go │ │ │ ├── envvars.go │ │ │ ├── errors.go │ │ │ ├── filters.go │ │ │ ├── hijack.go │ │ │ ├── image_build.go │ │ │ ├── image_build_opts.go │ │ │ ├── image_history.go │ │ │ ├── image_history_opts.go │ │ │ ├── image_import.go │ │ │ ├── image_import_opts.go │ │ │ ├── image_inspect.go │ │ │ ├── image_inspect_opts.go │ │ │ ├── image_list.go │ │ │ ├── image_list_opts.go │ │ │ ├── image_load.go │ │ │ ├── image_load_opts.go │ │ │ ├── image_prune.go │ │ │ ├── image_pull.go │ │ │ ├── image_pull_opts.go │ │ │ ├── image_push.go │ │ │ ├── image_push_opts.go │ │ │ ├── image_remove.go │ │ │ ├── image_remove_opts.go │ │ │ ├── image_save.go │ │ │ ├── image_save_opts.go │ │ │ ├── image_search.go │ │ │ ├── image_search_opts.go │ │ │ ├── image_tag.go │ │ │ ├── internal │ │ │ ├── json-stream.go │ │ │ ├── jsonmessages.go │ │ │ └── timestamp │ │ │ │ └── timestamp.go │ │ │ ├── login.go │ │ │ ├── network_connect.go │ │ │ ├── network_create.go │ │ │ ├── network_disconnect.go │ │ │ ├── network_inspect.go │ │ │ ├── network_inspect_opts.go │ │ │ ├── network_list.go │ │ │ ├── network_list_opts.go │ │ │ ├── network_prune.go │ │ │ ├── network_remove.go │ │ │ ├── node_inspect.go │ │ │ ├── node_list.go │ │ │ ├── node_remove.go │ │ │ ├── node_update.go │ │ │ ├── ping.go │ │ │ ├── pkg │ │ │ └── versions │ │ │ │ └── compare.go │ │ │ ├── plugin_create.go │ │ │ ├── plugin_disable.go │ │ │ ├── plugin_enable.go │ │ │ ├── plugin_inspect.go │ │ │ ├── plugin_install.go │ │ │ ├── plugin_list.go │ │ │ ├── plugin_push.go │ │ │ ├── plugin_remove.go │ │ │ ├── plugin_set.go │ │ │ ├── plugin_upgrade.go │ │ │ ├── request.go │ │ │ ├── secret_create.go │ │ │ ├── secret_inspect.go │ │ │ ├── secret_list.go │ │ │ ├── secret_remove.go │ │ │ ├── secret_update.go │ │ │ ├── service_create.go │ │ │ ├── service_inspect.go │ │ │ ├── service_list.go │ │ │ ├── service_logs.go │ │ │ ├── service_remove.go │ │ │ ├── service_update.go │ │ │ ├── swarm_get_unlock_key.go │ │ │ ├── swarm_init.go │ │ │ ├── swarm_inspect.go │ │ │ ├── swarm_join.go │ │ │ ├── swarm_leave.go │ │ │ ├── swarm_unlock.go │ │ │ ├── swarm_update.go │ │ │ ├── system_disk_usage.go │ │ │ ├── system_events.go │ │ │ ├── system_info.go │ │ │ ├── task_inspect.go │ │ │ ├── task_list.go │ │ │ ├── task_logs.go │ │ │ ├── utils.go │ │ │ ├── version.go │ │ │ ├── volume_create.go │ │ │ ├── volume_inspect.go │ │ │ ├── volume_list.go │ │ │ ├── volume_prune.go │ │ │ ├── volume_remove.go │ │ │ └── volume_update.go │ ├── patternmatcher │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── patternmatcher.go │ ├── sys │ │ ├── capability │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── capability.go │ │ │ ├── capability_linux.go │ │ │ ├── capability_noop.go │ │ │ ├── enum.go │ │ │ ├── enum_gen.go │ │ │ └── syscall_linux.go │ │ ├── mountinfo │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── mounted_linux.go │ │ │ ├── mounted_unix.go │ │ │ ├── mountinfo.go │ │ │ ├── mountinfo_bsd.go │ │ │ ├── mountinfo_filters.go │ │ │ ├── mountinfo_freebsdlike.go │ │ │ ├── mountinfo_linux.go │ │ │ ├── mountinfo_openbsd.go │ │ │ ├── mountinfo_unsupported.go │ │ │ └── mountinfo_windows.go │ │ ├── sequential │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── sequential_unix.go │ │ │ └── sequential_windows.go │ │ ├── user │ │ │ ├── LICENSE │ │ │ ├── idtools.go │ │ │ ├── idtools_unix.go │ │ │ ├── idtools_windows.go │ │ │ ├── lookup_unix.go │ │ │ ├── user.go │ │ │ └── user_fuzzer.go │ │ └── userns │ │ │ ├── LICENSE │ │ │ ├── userns.go │ │ │ ├── userns_linux.go │ │ │ ├── userns_linux_fuzzer.go │ │ │ └── userns_unsupported.go │ └── term │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ascii.go │ │ ├── doc.go │ │ ├── proxy.go │ │ ├── term.go │ │ ├── term_unix.go │ │ ├── term_windows.go │ │ ├── termios_bsd.go │ │ ├── termios_nonbsd.go │ │ ├── termios_unix.go │ │ ├── termios_windows.go │ │ └── windows │ │ ├── ansi_reader.go │ │ ├── ansi_writer.go │ │ ├── console.go │ │ └── doc.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_118.go │ │ ├── go_above_19.go │ │ ├── go_below_118.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── morikuni │ └── aec │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aec.go │ │ ├── ansi.go │ │ ├── builder.go │ │ ├── sample.gif │ │ └── sgr.go ├── opencontainers │ ├── cgroups │ │ ├── .golangci-extra.yml │ │ ├── .golangci.yml │ │ ├── CODEOWNERS │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS │ │ ├── MAINTAINERS_GUIDE.md │ │ ├── README.md │ │ ├── RELEASES.md │ │ ├── cgroups.go │ │ ├── config_blkio_device.go │ │ ├── config_hugepages.go │ │ ├── config_ifprio_map.go │ │ ├── config_linux.go │ │ ├── config_rdma.go │ │ ├── config_unsupported.go │ │ ├── devices │ │ │ └── config │ │ │ │ ├── device.go │ │ │ │ └── mknod_unix.go │ │ ├── file.go │ │ ├── fs2 │ │ │ ├── cpu.go │ │ │ ├── cpuset.go │ │ │ ├── create.go │ │ │ ├── defaultpath.go │ │ │ ├── freezer.go │ │ │ ├── fs2.go │ │ │ ├── hugetlb.go │ │ │ ├── io.go │ │ │ ├── memory.go │ │ │ ├── misc.go │ │ │ ├── pids.go │ │ │ └── psi.go │ │ ├── fscommon │ │ │ ├── rdma.go │ │ │ └── utils.go │ │ ├── getallpids.go │ │ ├── internal │ │ │ └── path │ │ │ │ └── path.go │ │ ├── stats.go │ │ ├── utils.go │ │ └── v1_utils.go │ ├── go-digest │ │ ├── .mailmap │ │ ├── .pullapprove.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE.docs │ │ ├── MAINTAINERS │ │ ├── README.md │ │ ├── algorithm.go │ │ ├── digest.go │ │ ├── digester.go │ │ ├── doc.go │ │ └── verifiers.go │ ├── image-spec │ │ ├── LICENSE │ │ └── specs-go │ │ │ ├── v1 │ │ │ ├── annotations.go │ │ │ ├── config.go │ │ │ ├── descriptor.go │ │ │ ├── index.go │ │ │ ├── layout.go │ │ │ ├── manifest.go │ │ │ └── mediatype.go │ │ │ ├── version.go │ │ │ └── versioned.go │ ├── runc │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── internal │ │ │ ├── linux │ │ │ │ ├── doc.go │ │ │ │ ├── eintr.go │ │ │ │ └── linux.go │ │ │ └── pathrs │ │ │ │ ├── doc.go │ │ │ │ ├── mkdirall.go │ │ │ │ ├── mkdirall_pathrslite.go │ │ │ │ ├── path.go │ │ │ │ ├── procfs_pathrslite.go │ │ │ │ ├── retry.go │ │ │ │ └── root_pathrslite.go │ │ └── libcontainer │ │ │ ├── apparmor │ │ │ ├── apparmor.go │ │ │ ├── apparmor_linux.go │ │ │ └── apparmor_unsupported.go │ │ │ └── devices │ │ │ ├── device_deprecated.go │ │ │ └── device_unix.go │ ├── runtime-spec │ │ ├── LICENSE │ │ └── specs-go │ │ │ ├── config.go │ │ │ ├── state.go │ │ │ └── version.go │ ├── runtime-tools │ │ ├── LICENSE │ │ ├── generate │ │ │ ├── config.go │ │ │ ├── generate.go │ │ │ └── seccomp │ │ │ │ ├── consts.go │ │ │ │ ├── parse_action.go │ │ │ │ ├── parse_architecture.go │ │ │ │ ├── parse_arguments.go │ │ │ │ ├── parse_remove.go │ │ │ │ ├── seccomp_default.go │ │ │ │ ├── seccomp_default_linux.go │ │ │ │ ├── seccomp_default_unsupported.go │ │ │ │ └── syscall_compare.go │ │ └── validate │ │ │ └── capabilities │ │ │ ├── lastcap.go │ │ │ └── validate.go │ └── selinux │ │ ├── LICENSE │ │ ├── go-selinux │ │ ├── doc.go │ │ ├── label │ │ │ ├── label.go │ │ │ ├── label_linux.go │ │ │ └── label_stub.go │ │ ├── selinux.go │ │ ├── selinux_linux.go │ │ ├── selinux_stub.go │ │ └── xattrs_linux.go │ │ └── pkg │ │ └── pwalkdir │ │ ├── README.md │ │ └── pwalkdir.go ├── openshift │ └── imagebuilder │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── builder.go │ │ ├── constants.go │ │ ├── dispatchers.go │ │ ├── doc.go │ │ ├── dockerclient │ │ ├── archive.go │ │ ├── client.go │ │ ├── copyinfo.go │ │ └── directory.go │ │ ├── dockerfile │ │ ├── NOTICE │ │ ├── command │ │ │ └── command.go │ │ └── parser │ │ │ ├── line_parsers.go │ │ │ ├── parser.go │ │ │ └── split_command.go │ │ ├── evaluator.go │ │ ├── imagebuilder.spec │ │ ├── imageprogress │ │ ├── progress.go │ │ ├── pull.go │ │ └── push.go │ │ ├── internal │ │ └── env.go │ │ ├── internals.go │ │ ├── shell_parser.go │ │ ├── signal │ │ ├── README.md │ │ ├── signal.go │ │ └── signals.go │ │ └── strslice │ │ └── strslice.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── planetscale │ └── vtprotobuf │ │ ├── LICENSE │ │ └── protohelpers │ │ └── protohelpers.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── proglottis │ └── gpgme │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── data.go │ │ ├── go_gpgme.c │ │ ├── go_gpgme.h │ │ ├── gpgme.go │ │ ├── unset_agent_info.go │ │ └── unset_agent_info_windows.go ├── seccomp │ └── libseccomp-golang │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CHANGELOG │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── seccomp.go │ │ └── seccomp_internal.go ├── secure-systems-lab │ └── go-securesystemslib │ │ ├── LICENSE │ │ └── encrypted │ │ └── encrypted.go ├── sigstore │ ├── fulcio │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ └── pkg │ │ │ └── certificate │ │ │ ├── doc.go │ │ │ └── extensions.go │ ├── protobuf-specs │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ └── gen │ │ │ └── pb-go │ │ │ └── common │ │ │ └── v1 │ │ │ └── sigstore_common.pb.go │ └── sigstore │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE │ │ └── pkg │ │ ├── cryptoutils │ │ ├── certificate.go │ │ ├── doc.go │ │ ├── generic.go │ │ ├── password.go │ │ ├── privatekey.go │ │ ├── publickey.go │ │ ├── safestring.go │ │ └── sans.go │ │ └── signature │ │ ├── algorithm_registry.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ed25519.go │ │ ├── ed25519ph.go │ │ ├── message.go │ │ ├── options.go │ │ ├── options │ │ ├── context.go │ │ ├── digest.go │ │ ├── doc.go │ │ ├── keyversion.go │ │ ├── loadoptions.go │ │ ├── noop.go │ │ ├── rand.go │ │ ├── remoteverification.go │ │ ├── rpcauth.go │ │ └── signeropts.go │ │ ├── payload │ │ ├── doc.go │ │ └── payload.go │ │ ├── publickey.go │ │ ├── rsapkcs1v15.go │ │ ├── rsapss.go │ │ ├── signer.go │ │ ├── signerverifier.go │ │ ├── util.go │ │ └── verifier.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_wasi.go │ │ ├── terminal_check_wasip1.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── smallstep │ └── pkcs7 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ber.go │ │ ├── decrypt.go │ │ ├── encrypt.go │ │ ├── internal │ │ └── legacy │ │ │ └── x509 │ │ │ ├── debug.go │ │ │ ├── doc.go │ │ │ ├── oid.go │ │ │ ├── parser.go │ │ │ ├── pkcs1.go │ │ │ ├── verify.go │ │ │ └── x509.go │ │ ├── pkcs7.go │ │ ├── sign.go │ │ └── verify.go ├── spf13 │ ├── cobra │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .mailmap │ │ ├── CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── MAINTAINERS │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── active_help.go │ │ ├── args.go │ │ ├── bash_completions.go │ │ ├── bash_completionsV2.go │ │ ├── cobra.go │ │ ├── command.go │ │ ├── command_notwin.go │ │ ├── command_win.go │ │ ├── completions.go │ │ ├── fish_completions.go │ │ ├── flag_groups.go │ │ ├── powershell_completions.go │ │ ├── shell_completions.go │ │ └── zsh_completions.go │ └── pflag │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .golangci.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_func.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── errors.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float32_slice.go │ │ ├── float64.go │ │ ├── float64_slice.go │ │ ├── func.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int32_slice.go │ │ ├── int64.go │ │ ├── int64_slice.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_slice.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── string_to_int.go │ │ ├── string_to_int64.go │ │ ├── string_to_string.go │ │ ├── text.go │ │ ├── time.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go ├── stefanberger │ └── go-pkcs11uri │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── pkcs11uri.go ├── stretchr │ └── testify │ │ ├── LICENSE │ │ ├── assert │ │ ├── assertion_compare.go │ │ ├── assertion_format.go │ │ ├── assertion_format.go.tmpl │ │ ├── assertion_forward.go │ │ ├── assertion_forward.go.tmpl │ │ ├── assertion_order.go │ │ ├── assertions.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── http_assertions.go │ │ └── yaml │ │ │ ├── yaml_custom.go │ │ │ ├── yaml_default.go │ │ │ └── yaml_fail.go │ │ └── require │ │ ├── doc.go │ │ ├── forward_requirements.go │ │ ├── require.go │ │ ├── require.go.tmpl │ │ ├── require_forward.go │ │ ├── require_forward.go.tmpl │ │ └── requirements.go ├── sylabs │ └── sif │ │ └── v2 │ │ ├── LICENSE.md │ │ └── pkg │ │ └── sif │ │ ├── add.go │ │ ├── arch.go │ │ ├── buffer.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── descriptor.go │ │ ├── descriptor_input.go │ │ ├── load.go │ │ ├── select.go │ │ ├── set.go │ │ └── sif.go ├── tchap │ └── go-patricia │ │ └── v2 │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── patricia │ │ ├── children.go │ │ └── patricia.go ├── ulikunitz │ └── xz │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── TODO.md │ │ ├── bits.go │ │ ├── crc.go │ │ ├── format.go │ │ ├── fox-check-none.xz │ │ ├── fox.xz │ │ ├── internal │ │ ├── hash │ │ │ ├── cyclic_poly.go │ │ │ ├── doc.go │ │ │ ├── rabin_karp.go │ │ │ └── roller.go │ │ └── xlog │ │ │ └── xlog.go │ │ ├── lzma │ │ ├── bintree.go │ │ ├── bitops.go │ │ ├── breader.go │ │ ├── buffer.go │ │ ├── bytewriter.go │ │ ├── decoder.go │ │ ├── decoderdict.go │ │ ├── directcodec.go │ │ ├── distcodec.go │ │ ├── encoder.go │ │ ├── encoderdict.go │ │ ├── fox.lzma │ │ ├── hashtable.go │ │ ├── header.go │ │ ├── header2.go │ │ ├── lengthcodec.go │ │ ├── literalcodec.go │ │ ├── matchalgorithm.go │ │ ├── operation.go │ │ ├── prob.go │ │ ├── properties.go │ │ ├── rangecodec.go │ │ ├── reader.go │ │ ├── reader2.go │ │ ├── state.go │ │ ├── treecodecs.go │ │ ├── writer.go │ │ └── writer2.go │ │ ├── lzmafilter.go │ │ ├── make-docs │ │ ├── none-check.go │ │ ├── reader.go │ │ └── writer.go ├── vbatts │ └── tar-split │ │ ├── LICENSE │ │ ├── archive │ │ └── tar │ │ │ ├── common.go │ │ │ ├── format.go │ │ │ ├── reader.go │ │ │ ├── stat_actime1.go │ │ │ ├── stat_actime2.go │ │ │ ├── stat_unix.go │ │ │ ├── strconv.go │ │ │ └── writer.go │ │ └── tar │ │ ├── asm │ │ ├── README.md │ │ ├── assemble.go │ │ ├── disassemble.go │ │ ├── doc.go │ │ └── iterate.go │ │ └── storage │ │ ├── doc.go │ │ ├── entry.go │ │ ├── getter.go │ │ └── packer.go ├── vbauerster │ └── mpb │ │ └── v8 │ │ ├── .gitignore │ │ ├── CONTRIBUTING │ │ ├── README.md │ │ ├── UNLICENSE │ │ ├── bar.go │ │ ├── bar_filler.go │ │ ├── bar_filler_bar.go │ │ ├── bar_filler_nop.go │ │ ├── bar_filler_spinner.go │ │ ├── bar_heap.go │ │ ├── bar_option.go │ │ ├── container_option.go │ │ ├── cwriter │ │ ├── doc.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_solaris.go │ │ ├── util_zos.go │ │ ├── writer.go │ │ ├── writer_posix.go │ │ └── writer_windows.go │ │ ├── decor │ │ ├── any.go │ │ ├── counters.go │ │ ├── decorator.go │ │ ├── doc.go │ │ ├── elapsed.go │ │ ├── eta.go │ │ ├── meta.go │ │ ├── moving_average.go │ │ ├── name.go │ │ ├── on_abort.go │ │ ├── on_compete_or_on_abort.go │ │ ├── on_complete.go │ │ ├── on_condition.go │ │ ├── percentage.go │ │ ├── size_type.go │ │ ├── sizeb1000_string.go │ │ ├── sizeb1024_string.go │ │ ├── speed.go │ │ └── spinner.go │ │ ├── doc.go │ │ ├── heap_manager.go │ │ ├── internal │ │ ├── percentage.go │ │ └── width.go │ │ ├── progress.go │ │ ├── proxyreader.go │ │ └── proxywriter.go └── vishvananda │ ├── netlink │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── addr.go │ ├── addr_linux.go │ ├── bpf_linux.go │ ├── bridge_linux.go │ ├── chain.go │ ├── chain_linux.go │ ├── class.go │ ├── class_linux.go │ ├── conntrack_linux.go │ ├── conntrack_unspecified.go │ ├── devlink_linux.go │ ├── filter.go │ ├── filter_linux.go │ ├── fou.go │ ├── fou_linux.go │ ├── fou_unspecified.go │ ├── genetlink_linux.go │ ├── genetlink_unspecified.go │ ├── gtp_linux.go │ ├── handle_linux.go │ ├── handle_unspecified.go │ ├── inet_diag.go │ ├── ioctl_linux.go │ ├── ipset_linux.go │ ├── link.go │ ├── link_linux.go │ ├── link_tuntap_linux.go │ ├── neigh.go │ ├── neigh_linux.go │ ├── netlink.go │ ├── netlink_linux.go │ ├── netlink_unspecified.go │ ├── netns_linux.go │ ├── netns_unspecified.go │ ├── nl │ │ ├── addr_linux.go │ │ ├── bridge_linux.go │ │ ├── conntrack_linux.go │ │ ├── devlink_linux.go │ │ ├── genetlink_linux.go │ │ ├── ip6tnl_linux.go │ │ ├── ipset_linux.go │ │ ├── link_linux.go │ │ ├── lwt_linux.go │ │ ├── mpls_linux.go │ │ ├── nl_linux.go │ │ ├── nl_unspecified.go │ │ ├── parse_attr_linux.go │ │ ├── rdma_link_linux.go │ │ ├── route_linux.go │ │ ├── seg6_linux.go │ │ ├── seg6local_linux.go │ │ ├── syscall.go │ │ ├── tc_linux.go │ │ ├── vdpa_linux.go │ │ ├── xfrm_linux.go │ │ ├── xfrm_monitor_linux.go │ │ ├── xfrm_policy_linux.go │ │ └── xfrm_state_linux.go │ ├── order.go │ ├── proc_event_linux.go │ ├── protinfo.go │ ├── protinfo_linux.go │ ├── qdisc.go │ ├── qdisc_linux.go │ ├── rdma_link_linux.go │ ├── route.go │ ├── route_linux.go │ ├── route_unspecified.go │ ├── rule.go │ ├── rule_linux.go │ ├── rule_nonlinux.go │ ├── socket.go │ ├── socket_linux.go │ ├── socket_xdp_linux.go │ ├── tcp.go │ ├── tcp_linux.go │ ├── unix_diag.go │ ├── vdpa_linux.go │ ├── virtio.go │ ├── xdp_diag.go │ ├── xdp_linux.go │ ├── xfrm_linux.go │ ├── xfrm_monitor_linux.go │ ├── xfrm_policy_linux.go │ ├── xfrm_state_linux.go │ └── xfrm_unspecified.go │ └── netns │ ├── .golangci.yml │ ├── .yamllint.yml │ ├── LICENSE │ ├── README.md │ ├── doc.go │ ├── netns_linux.go │ ├── netns_others.go │ ├── nshandle_linux.go │ └── nshandle_others.go ├── go.etcd.io └── bbolt │ ├── .gitignore │ ├── .go-version │ ├── LICENSE │ ├── Makefile │ ├── OWNERS │ ├── README.md │ ├── bolt_aix.go │ ├── bolt_android.go │ ├── bolt_linux.go │ ├── bolt_openbsd.go │ ├── bolt_solaris.go │ ├── bolt_unix.go │ ├── bolt_windows.go │ ├── boltsync_unix.go │ ├── bucket.go │ ├── compact.go │ ├── cursor.go │ ├── db.go │ ├── doc.go │ ├── errors.go │ ├── errors │ └── errors.go │ ├── internal │ ├── common │ │ ├── bolt_386.go │ │ ├── bolt_amd64.go │ │ ├── bolt_arm.go │ │ ├── bolt_arm64.go │ │ ├── bolt_loong64.go │ │ ├── bolt_mips64x.go │ │ ├── bolt_mipsx.go │ │ ├── bolt_ppc.go │ │ ├── bolt_ppc64.go │ │ ├── bolt_ppc64le.go │ │ ├── bolt_riscv64.go │ │ ├── bolt_s390x.go │ │ ├── bucket.go │ │ ├── inode.go │ │ ├── meta.go │ │ ├── page.go │ │ ├── types.go │ │ ├── unsafe.go │ │ ├── utils.go │ │ └── verify.go │ └── freelist │ │ ├── array.go │ │ ├── freelist.go │ │ ├── hashmap.go │ │ └── shared.go │ ├── logger.go │ ├── mlock_unix.go │ ├── mlock_windows.go │ ├── node.go │ ├── tx.go │ └── tx_check.go ├── go.opentelemetry.io ├── auto │ └── sdk │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── VERSIONING.md │ │ ├── doc.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── limit.go │ │ ├── span.go │ │ ├── tracer.go │ │ └── tracer_provider.go ├── contrib │ └── instrumentation │ │ └── net │ │ └── http │ │ └── otelhttp │ │ ├── LICENSE │ │ ├── client.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── handler.go │ │ ├── internal │ │ ├── request │ │ │ ├── body_wrapper.go │ │ │ ├── gen.go │ │ │ └── resp_writer_wrapper.go │ │ └── semconv │ │ │ ├── env.go │ │ │ ├── gen.go │ │ │ ├── httpconv.go │ │ │ └── util.go │ │ ├── labeler.go │ │ ├── start_time_context.go │ │ ├── transport.go │ │ └── version.go └── otel │ ├── .clomonitor.yml │ ├── .codespellignore │ ├── .codespellrc │ ├── .gitattributes │ ├── .gitignore │ ├── .golangci.yml │ ├── .lycheeignore │ ├── .markdownlint.yaml │ ├── CHANGELOG.md │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASING.md │ ├── SECURITY-INSIGHTS.yml │ ├── VERSIONING.md │ ├── attribute │ ├── README.md │ ├── doc.go │ ├── encoder.go │ ├── filter.go │ ├── internal │ │ └── attribute.go │ ├── iterator.go │ ├── key.go │ ├── kv.go │ ├── rawhelpers.go │ ├── set.go │ ├── type_string.go │ └── value.go │ ├── baggage │ ├── README.md │ ├── baggage.go │ ├── context.go │ └── doc.go │ ├── codes │ ├── README.md │ ├── codes.go │ └── doc.go │ ├── dependencies.Dockerfile │ ├── doc.go │ ├── error_handler.go │ ├── handler.go │ ├── internal │ ├── baggage │ │ ├── baggage.go │ │ └── context.go │ └── global │ │ ├── handler.go │ │ ├── instruments.go │ │ ├── internal_logging.go │ │ ├── meter.go │ │ ├── propagator.go │ │ ├── state.go │ │ └── trace.go │ ├── internal_logging.go │ ├── metric.go │ ├── metric │ ├── LICENSE │ ├── README.md │ ├── asyncfloat64.go │ ├── asyncint64.go │ ├── config.go │ ├── doc.go │ ├── embedded │ │ ├── README.md │ │ └── embedded.go │ ├── instrument.go │ ├── meter.go │ ├── noop │ │ ├── README.md │ │ └── noop.go │ ├── syncfloat64.go │ └── syncint64.go │ ├── propagation.go │ ├── propagation │ ├── README.md │ ├── baggage.go │ ├── doc.go │ ├── propagation.go │ └── trace_context.go │ ├── renovate.json │ ├── requirements.txt │ ├── semconv │ └── v1.37.0 │ │ ├── MIGRATION.md │ │ ├── README.md │ │ ├── attribute_group.go │ │ ├── doc.go │ │ ├── error_type.go │ │ ├── exception.go │ │ ├── httpconv │ │ └── metric.go │ │ └── schema.go │ ├── trace.go │ ├── trace │ ├── LICENSE │ ├── README.md │ ├── auto.go │ ├── config.go │ ├── context.go │ ├── doc.go │ ├── embedded │ │ ├── README.md │ │ └── embedded.go │ ├── hex.go │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ ├── nonrecording.go │ ├── noop.go │ ├── noop │ │ ├── README.md │ │ └── noop.go │ ├── provider.go │ ├── span.go │ ├── trace.go │ ├── tracer.go │ └── tracestate.go │ ├── verify_released_changelog.sh │ ├── version.go │ └── versions.yaml ├── go.podman.io ├── common │ ├── LICENSE │ ├── internal │ │ ├── attributedstring │ │ │ └── slice.go │ │ └── deepcopy.go │ ├── libimage │ │ ├── copier.go │ │ ├── define │ │ │ ├── manifests.go │ │ │ ├── platform.go │ │ │ └── search.go │ │ ├── disk_usage.go │ │ ├── events.go │ │ ├── filter │ │ │ └── filter.go │ │ ├── filters.go │ │ ├── history.go │ │ ├── image.go │ │ ├── image_config.go │ │ ├── image_tree.go │ │ ├── import.go │ │ ├── inspect.go │ │ ├── layer_tree.go │ │ ├── load.go │ │ ├── manifest_list.go │ │ ├── manifests │ │ │ ├── copy.go │ │ │ └── manifests.go │ │ ├── normalize.go │ │ ├── oci.go │ │ ├── platform.go │ │ ├── platform │ │ │ └── platform.go │ │ ├── pull.go │ │ ├── push.go │ │ ├── runtime.go │ │ ├── save.go │ │ ├── search.go │ │ └── types.go │ ├── libnetwork │ │ ├── cni │ │ │ ├── README.md │ │ │ ├── cni_conversion.go │ │ │ ├── cni_exec.go │ │ │ ├── cni_types.go │ │ │ ├── config.go │ │ │ ├── config_freebsd.go │ │ │ ├── config_linux.go │ │ │ ├── network.go │ │ │ ├── run.go │ │ │ ├── run_freebsd.go │ │ │ └── run_linux.go │ │ ├── etchosts │ │ │ ├── hosts.go │ │ │ ├── ip.go │ │ │ └── util.go │ │ ├── internal │ │ │ ├── rootlessnetns │ │ │ │ ├── netns.go │ │ │ │ ├── netns_freebsd.go │ │ │ │ └── netns_linux.go │ │ │ └── util │ │ │ │ ├── bridge.go │ │ │ │ ├── create.go │ │ │ │ ├── interface.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── ip.go │ │ │ │ ├── parse.go │ │ │ │ ├── util.go │ │ │ │ └── validate.go │ │ ├── netavark │ │ │ ├── config.go │ │ │ ├── const.go │ │ │ ├── exec.go │ │ │ ├── ipam.go │ │ │ ├── network.go │ │ │ └── run.go │ │ ├── network │ │ │ ├── interface.go │ │ │ ├── interface_cni.go │ │ │ ├── interface_cni_unsupported.go │ │ │ ├── interface_freebsd.go │ │ │ └── interface_linux.go │ │ ├── pasta │ │ │ ├── pasta_linux.go │ │ │ └── types.go │ │ ├── resolvconf │ │ │ ├── resolv.go │ │ │ └── resolvconf.go │ │ ├── slirp4netns │ │ │ ├── const.go │ │ │ ├── const_linux.go │ │ │ └── slirp4netns.go │ │ ├── types │ │ │ ├── const.go │ │ │ ├── define.go │ │ │ └── network.go │ │ └── util │ │ │ ├── filters.go │ │ │ ├── ip.go │ │ │ └── ip_calc.go │ ├── pkg │ │ ├── apparmor │ │ │ ├── apparmor.go │ │ │ ├── apparmor_linux.go │ │ │ ├── apparmor_linux_template.go │ │ │ ├── apparmor_unsupported.go │ │ │ └── internal │ │ │ │ └── supported │ │ │ │ └── supported.go │ │ ├── auth │ │ │ ├── auth.go │ │ │ └── cli.go │ │ ├── capabilities │ │ │ └── capabilities.go │ │ ├── cgroups │ │ │ ├── blkio_linux.go │ │ │ ├── cgroups_linux.go │ │ │ ├── cgroups_unsupported.go │ │ │ ├── cpu_linux.go │ │ │ ├── memory_linux.go │ │ │ ├── pids_linux.go │ │ │ ├── systemd_linux.go │ │ │ └── utils_linux.go │ │ ├── chown │ │ │ ├── chown.go │ │ │ ├── chown_unix.go │ │ │ └── chown_windows.go │ │ ├── completion │ │ │ └── completion.go │ │ ├── config │ │ │ ├── config.go │ │ │ ├── config_bsd.go │ │ │ ├── config_darwin.go │ │ │ ├── config_linux.go │ │ │ ├── config_local.go │ │ │ ├── config_remote.go │ │ │ ├── config_unix.go │ │ │ ├── config_unsupported.go │ │ │ ├── config_windows.go │ │ │ ├── connections.go │ │ │ ├── containers.conf │ │ │ ├── containers.conf-freebsd │ │ │ ├── db_backend.go │ │ │ ├── default.go │ │ │ ├── default_bsd.go │ │ │ ├── default_common.go │ │ │ ├── default_darwin.go │ │ │ ├── default_linux.go │ │ │ ├── default_unix_notdarwin.go │ │ │ ├── default_unsupported.go │ │ │ ├── default_windows.go │ │ │ ├── modules.go │ │ │ ├── new.go │ │ │ ├── nosystemd.go │ │ │ ├── pod_exit_policy.go │ │ │ ├── pull_policy.go │ │ │ └── systemd.go │ │ ├── download │ │ │ └── download.go │ │ ├── filters │ │ │ └── filters.go │ │ ├── formats │ │ │ ├── formats.go │ │ │ └── templates.go │ │ ├── hooks │ │ │ ├── 0.1.0 │ │ │ │ └── hook.go │ │ │ ├── 1.0.0 │ │ │ │ ├── hook.go │ │ │ │ └── when.go │ │ │ ├── README.md │ │ │ ├── exec │ │ │ │ ├── exec.go │ │ │ │ └── runtimeconfigfilter.go │ │ │ ├── hooks.go │ │ │ ├── monitor.go │ │ │ ├── read.go │ │ │ └── version.go │ │ ├── machine │ │ │ └── machine.go │ │ ├── manifests │ │ │ ├── errors.go │ │ │ └── manifests.go │ │ ├── netns │ │ │ └── netns_linux.go │ │ ├── parse │ │ │ ├── parse.go │ │ │ └── parse_unix.go │ │ ├── password │ │ │ ├── password_supported.go │ │ │ └── password_windows.go │ │ ├── retry │ │ │ ├── retry.go │ │ │ ├── retry_linux.go │ │ │ └── retry_unsupported.go │ │ ├── rootlessport │ │ │ └── rootlessport_linux.go │ │ ├── seccomp │ │ │ ├── conversion.go │ │ │ ├── default_linux.go │ │ │ ├── errno_list.go │ │ │ ├── filter_linux.go │ │ │ ├── seccomp.json │ │ │ ├── seccomp_linux.go │ │ │ ├── seccomp_unsupported.go │ │ │ ├── supported.go │ │ │ ├── types.go │ │ │ └── validate_linux.go │ │ ├── servicereaper │ │ │ └── service.go │ │ ├── signal │ │ │ ├── signal_common.go │ │ │ ├── signal_linux.go │ │ │ ├── signal_linux_mipsx.go │ │ │ └── signal_unsupported.go │ │ ├── subscriptions │ │ │ ├── mounts.conf │ │ │ └── subscriptions.go │ │ ├── supplemented │ │ │ ├── errors.go │ │ │ └── supplemented.go │ │ ├── systemd │ │ │ ├── systemd_linux.go │ │ │ └── systemd_unsupported.go │ │ ├── timetype │ │ │ └── timestamp.go │ │ ├── umask │ │ │ ├── umask.go │ │ │ ├── umask_unix.go │ │ │ └── umask_unsupported.go │ │ ├── util │ │ │ └── util.go │ │ └── version │ │ │ └── version.go │ └── version │ │ └── version.go ├── image │ └── v5 │ │ ├── LICENSE │ │ ├── copy │ │ ├── blob.go │ │ ├── compression.go │ │ ├── copy.go │ │ ├── digesting_reader.go │ │ ├── encryption.go │ │ ├── manifest.go │ │ ├── multiple.go │ │ ├── progress_bars.go │ │ ├── progress_channel.go │ │ ├── sign.go │ │ └── single.go │ │ ├── directory │ │ ├── directory_dest.go │ │ ├── directory_src.go │ │ ├── directory_transport.go │ │ ├── explicitfilepath │ │ │ └── path.go │ │ └── version.go │ │ ├── docker │ │ ├── archive │ │ │ ├── dest.go │ │ │ ├── reader.go │ │ │ ├── src.go │ │ │ ├── transport.go │ │ │ └── writer.go │ │ ├── body_reader.go │ │ ├── cache.go │ │ ├── daemon │ │ │ ├── client.go │ │ │ ├── daemon_dest.go │ │ │ ├── daemon_src.go │ │ │ └── daemon_transport.go │ │ ├── distribution_error.go │ │ ├── docker_client.go │ │ ├── docker_image.go │ │ ├── docker_image_dest.go │ │ ├── docker_image_src.go │ │ ├── docker_transport.go │ │ ├── errors.go │ │ ├── internal │ │ │ └── tarfile │ │ │ │ ├── dest.go │ │ │ │ ├── reader.go │ │ │ │ ├── src.go │ │ │ │ ├── types.go │ │ │ │ └── writer.go │ │ ├── paths_common.go │ │ ├── paths_freebsd.go │ │ ├── policyconfiguration │ │ │ └── naming.go │ │ ├── reference │ │ │ ├── README.md │ │ │ ├── helpers.go │ │ │ ├── normalize.go │ │ │ ├── reference.go │ │ │ ├── regexp-additions.go │ │ │ └── regexp.go │ │ ├── registries_d.go │ │ └── wwwauthenticate.go │ │ ├── image │ │ ├── docker_schema2.go │ │ ├── sourced.go │ │ └── unparsed.go │ │ ├── internal │ │ ├── blobinfocache │ │ │ ├── blobinfocache.go │ │ │ └── types.go │ │ ├── image │ │ │ ├── digest_validation.go │ │ │ ├── docker_list.go │ │ │ ├── docker_schema1.go │ │ │ ├── docker_schema2.go │ │ │ ├── manifest.go │ │ │ ├── memory.go │ │ │ ├── oci.go │ │ │ ├── oci_index.go │ │ │ ├── sourced.go │ │ │ └── unparsed.go │ │ ├── imagedestination │ │ │ ├── impl │ │ │ │ ├── compat.go │ │ │ │ ├── helpers.go │ │ │ │ └── properties.go │ │ │ ├── stubs │ │ │ │ ├── original_oci_config.go │ │ │ │ ├── put_blob_partial.go │ │ │ │ ├── signatures.go │ │ │ │ └── stubs.go │ │ │ └── wrapper.go │ │ ├── imagesource │ │ │ ├── impl │ │ │ │ ├── compat.go │ │ │ │ ├── layer_infos.go │ │ │ │ ├── properties.go │ │ │ │ └── signatures.go │ │ │ ├── stubs │ │ │ │ ├── get_blob_at.go │ │ │ │ └── stubs.go │ │ │ └── wrapper.go │ │ ├── iolimits │ │ │ └── iolimits.go │ │ ├── manifest │ │ │ ├── common.go │ │ │ ├── docker_schema2.go │ │ │ ├── docker_schema2_list.go │ │ │ ├── errors.go │ │ │ ├── list.go │ │ │ ├── manifest.go │ │ │ └── oci_index.go │ │ ├── multierr │ │ │ └── multierr.go │ │ ├── pkg │ │ │ └── platform │ │ │ │ └── platform_matcher.go │ │ ├── private │ │ │ └── private.go │ │ ├── putblobdigest │ │ │ └── put_blob_digest.go │ │ ├── rootless │ │ │ └── rootless.go │ │ ├── set │ │ │ └── set.go │ │ ├── signature │ │ │ ├── signature.go │ │ │ ├── sigstore.go │ │ │ └── simple.go │ │ ├── signer │ │ │ └── signer.go │ │ ├── streamdigest │ │ │ └── stream_digest.go │ │ ├── tmpdir │ │ │ └── tmpdir.go │ │ ├── unparsedimage │ │ │ └── wrapper.go │ │ ├── uploadreader │ │ │ └── upload_reader.go │ │ └── useragent │ │ │ └── useragent.go │ │ ├── manifest │ │ ├── common.go │ │ ├── docker_schema1.go │ │ ├── docker_schema2.go │ │ ├── docker_schema2_list.go │ │ ├── list.go │ │ ├── manifest.go │ │ ├── oci.go │ │ └── oci_index.go │ │ ├── oci │ │ ├── archive │ │ │ ├── oci_dest.go │ │ │ ├── oci_src.go │ │ │ └── oci_transport.go │ │ ├── internal │ │ │ └── oci_util.go │ │ └── layout │ │ │ ├── oci_delete.go │ │ │ ├── oci_dest.go │ │ │ ├── oci_src.go │ │ │ ├── oci_transport.go │ │ │ └── reader.go │ │ ├── openshift │ │ ├── openshift-copies.go │ │ ├── openshift.go │ │ ├── openshift_dest.go │ │ ├── openshift_src.go │ │ └── openshift_transport.go │ │ ├── pkg │ │ ├── blobcache │ │ │ ├── blobcache.go │ │ │ ├── dest.go │ │ │ └── src.go │ │ ├── blobinfocache │ │ │ ├── default.go │ │ │ ├── internal │ │ │ │ └── prioritize │ │ │ │ │ └── prioritize.go │ │ │ ├── memory │ │ │ │ └── memory.go │ │ │ ├── none │ │ │ │ └── none.go │ │ │ └── sqlite │ │ │ │ └── sqlite.go │ │ ├── compression │ │ │ ├── compression.go │ │ │ ├── internal │ │ │ │ └── types.go │ │ │ ├── types │ │ │ │ └── types.go │ │ │ └── zstd.go │ │ ├── docker │ │ │ └── config │ │ │ │ └── config.go │ │ ├── shortnames │ │ │ └── shortnames.go │ │ ├── strslice │ │ │ ├── README.md │ │ │ └── strslice.go │ │ ├── sysregistriesv2 │ │ │ ├── paths_common.go │ │ │ ├── paths_freebsd.go │ │ │ ├── shortnames.go │ │ │ └── system_registries_v2.go │ │ └── tlsclientconfig │ │ │ └── tlsclientconfig.go │ │ ├── sif │ │ ├── load.go │ │ ├── src.go │ │ └── transport.go │ │ ├── signature │ │ ├── docker.go │ │ ├── fulcio_cert.go │ │ ├── internal │ │ │ ├── errors.go │ │ │ ├── json.go │ │ │ ├── rekor_api_types.go │ │ │ ├── rekor_set.go │ │ │ ├── sequoia │ │ │ │ ├── gosequoia.c │ │ │ │ ├── gosequoia.h │ │ │ │ ├── gosequoiafuncs.h │ │ │ │ ├── sequoia.go │ │ │ │ └── sequoia.h │ │ │ └── sigstore_payload.go │ │ ├── mechanism.go │ │ ├── mechanism_gpgme.go │ │ ├── mechanism_gpgme_only.go │ │ ├── mechanism_openpgp.go │ │ ├── mechanism_sequoia.go │ │ ├── pki_cert.go │ │ ├── policy_config.go │ │ ├── policy_config_sigstore.go │ │ ├── policy_eval.go │ │ ├── policy_eval_baselayer.go │ │ ├── policy_eval_signedby.go │ │ ├── policy_eval_sigstore.go │ │ ├── policy_eval_simple.go │ │ ├── policy_paths_common.go │ │ ├── policy_paths_freebsd.go │ │ ├── policy_reference_match.go │ │ ├── policy_types.go │ │ ├── signer │ │ │ └── signer.go │ │ ├── sigstore │ │ │ ├── copied.go │ │ │ ├── generate.go │ │ │ ├── internal │ │ │ │ └── signer.go │ │ │ └── signer.go │ │ ├── simple.go │ │ └── simplesigning │ │ │ └── signer.go │ │ ├── storage │ │ ├── storage_dest.go │ │ ├── storage_image.go │ │ ├── storage_reference.go │ │ ├── storage_src.go │ │ └── storage_transport.go │ │ ├── tarball │ │ ├── doc.go │ │ ├── tarball_reference.go │ │ ├── tarball_src.go │ │ └── tarball_transport.go │ │ ├── transports │ │ ├── alltransports │ │ │ ├── alltransports.go │ │ │ ├── docker_daemon.go │ │ │ ├── docker_daemon_stub.go │ │ │ ├── storage.go │ │ │ └── storage_stub.go │ │ ├── stub.go │ │ └── transports.go │ │ ├── types │ │ └── types.go │ │ └── version │ │ └── version.go └── storage │ ├── .dockerignore │ ├── .gitignore │ ├── .golangci.yml │ ├── .mailmap │ ├── AUTHORS │ ├── LICENSE │ ├── Makefile │ ├── NOTICE │ ├── OWNERS │ ├── README.md │ ├── VERSION │ ├── check.go │ ├── containers.go │ ├── deprecated.go │ ├── drivers │ ├── btrfs │ │ ├── btrfs.go │ │ ├── dummy_unsupported.go │ │ └── version.go │ ├── chown.go │ ├── chown_darwin.go │ ├── chown_unix.go │ ├── chown_windows.go │ ├── chroot_unix.go │ ├── chroot_windows.go │ ├── copy │ │ ├── copy_linux.go │ │ └── copy_unsupported.go │ ├── counter.go │ ├── driver.go │ ├── driver_darwin.go │ ├── driver_freebsd.go │ ├── driver_linux.go │ ├── driver_solaris.go │ ├── driver_unsupported.go │ ├── fsdiff.go │ ├── jsoniter.go │ ├── overlay │ │ ├── check.go │ │ ├── check_116.go │ │ ├── composefs.go │ │ ├── jsoniter.go │ │ ├── mount.go │ │ ├── overlay.go │ │ ├── overlay_disk_quota.go │ │ ├── overlay_disk_quota_unsupported.go │ │ ├── overlay_unsupported.go │ │ └── randomid.go │ ├── overlayutils │ │ └── overlayutils.go │ ├── quota │ │ ├── projectquota.go │ │ ├── projectquota_supported.go │ │ └── projectquota_unsupported.go │ ├── register │ │ ├── register_btrfs.go │ │ ├── register_overlay.go │ │ ├── register_vfs.go │ │ └── register_zfs.go │ ├── vfs │ │ ├── copy_linux.go │ │ ├── copy_unsupported.go │ │ └── driver.go │ └── zfs │ │ ├── MAINTAINERS │ │ ├── zfs.go │ │ ├── zfs_freebsd.go │ │ ├── zfs_linux.go │ │ └── zfs_unsupported.go │ ├── errors.go │ ├── idset.go │ ├── images.go │ ├── internal │ ├── dedup │ │ ├── dedup.go │ │ ├── dedup_linux.go │ │ └── dedup_unsupported.go │ ├── rawfilelock │ │ ├── rawfilelock.go │ │ ├── rawfilelock_unix.go │ │ └── rawfilelock_windows.go │ ├── staging_lockfile │ │ └── staging_lockfile.go │ └── tempdir │ │ └── tempdir.go │ ├── jsoniter.go │ ├── layers.go │ ├── lockfile_compat.go │ ├── pkg │ ├── archive │ │ ├── README.md │ │ ├── archive.go │ │ ├── archive_110.go │ │ ├── archive_19.go │ │ ├── archive_bsd.go │ │ ├── archive_linux.go │ │ ├── archive_other.go │ │ ├── archive_unix.go │ │ ├── archive_windows.go │ │ ├── archive_zstd.go │ │ ├── changes.go │ │ ├── changes_linux.go │ │ ├── changes_other.go │ │ ├── changes_unix.go │ │ ├── changes_windows.go │ │ ├── copy.go │ │ ├── copy_unix.go │ │ ├── copy_windows.go │ │ ├── diff.go │ │ ├── fflags_bsd.go │ │ ├── fflags_unsupported.go │ │ ├── filter.go │ │ ├── time_linux.go │ │ ├── time_unsupported.go │ │ ├── whiteouts.go │ │ └── wrap.go │ ├── chrootarchive │ │ ├── archive.go │ │ ├── archive_darwin.go │ │ ├── archive_unix.go │ │ ├── archive_windows.go │ │ ├── chroot_linux.go │ │ ├── chroot_unix.go │ │ ├── diff.go │ │ ├── diff_darwin.go │ │ ├── diff_unix.go │ │ ├── diff_windows.go │ │ ├── init_unix.go │ │ └── jsoniter.go │ ├── chunked │ │ ├── bloom_filter_linux.go │ │ ├── cache_linux.go │ │ ├── compression.go │ │ ├── compression_linux.go │ │ ├── compressor │ │ │ ├── compressor.go │ │ │ └── rollsum.go │ │ ├── dump │ │ │ └── dump.go │ │ ├── filesystem_linux.go │ │ ├── internal │ │ │ ├── minimal │ │ │ │ └── compression.go │ │ │ └── path │ │ │ │ └── path.go │ │ ├── storage.go │ │ ├── storage_linux.go │ │ ├── storage_unsupported.go │ │ └── toc │ │ │ └── toc.go │ ├── config │ │ └── config.go │ ├── directory │ │ ├── directory.go │ │ ├── directory_unix.go │ │ └── directory_windows.go │ ├── fileutils │ │ ├── exists_freebsd.go │ │ ├── exists_unix.go │ │ ├── exists_windows.go │ │ ├── fileutils.go │ │ ├── fileutils_darwin.go │ │ ├── fileutils_solaris.go │ │ ├── fileutils_unix.go │ │ ├── fileutils_windows.go │ │ ├── reflink_linux.go │ │ └── reflink_unsupported.go │ ├── fsutils │ │ └── fsutils_linux.go │ ├── fsverity │ │ ├── fsverity_linux.go │ │ └── fsverity_unsupported.go │ ├── homedir │ │ ├── homedir.go │ │ ├── homedir_unix.go │ │ └── homedir_windows.go │ ├── idmap │ │ ├── idmapped_utils.go │ │ └── idmapped_utils_unsupported.go │ ├── idtools │ │ ├── idtools.go │ │ ├── idtools_supported.go │ │ ├── idtools_unix.go │ │ ├── idtools_unsupported.go │ │ ├── idtools_windows.go │ │ ├── parser.go │ │ ├── usergroupadd_linux.go │ │ ├── usergroupadd_unsupported.go │ │ └── utils_unix.go │ ├── ioutils │ │ ├── buffer.go │ │ ├── bytespipe.go │ │ ├── fswriters.go │ │ ├── fswriters_linux.go │ │ ├── fswriters_other.go │ │ ├── readers.go │ │ ├── temp_unix.go │ │ ├── temp_windows.go │ │ ├── writeflusher.go │ │ └── writers.go │ ├── lockfile │ │ ├── lastwrite.go │ │ ├── lockfile.go │ │ ├── lockfile_unix.go │ │ └── lockfile_windows.go │ ├── longpath │ │ └── longpath.go │ ├── loopback │ │ ├── attach_loopback.go │ │ ├── ioctl.go │ │ ├── loop_wrapper.go │ │ ├── loopback.go │ │ └── loopback_unsupported.go │ ├── mount │ │ ├── flags.go │ │ ├── flags_freebsd.go │ │ ├── flags_linux.go │ │ ├── flags_unsupported.go │ │ ├── mount.go │ │ ├── mounter_freebsd.go │ │ ├── mounter_linux.go │ │ ├── mounter_unsupported.go │ │ ├── mountinfo.go │ │ ├── mountinfo_linux.go │ │ ├── sharedsubtree_linux.go │ │ ├── unmount_unix.go │ │ └── unmount_unsupported.go │ ├── parsers │ │ └── parsers.go │ ├── pools │ │ └── pools.go │ ├── promise │ │ └── promise.go │ ├── reexec │ │ ├── README.md │ │ ├── command_freebsd.go │ │ ├── command_linux.go │ │ ├── command_unix.go │ │ ├── command_unsupported.go │ │ ├── command_windows.go │ │ └── reexec.go │ ├── regexp │ │ ├── regexp.go │ │ ├── regexp_dontprecompile.go │ │ └── regexp_precompile.go │ ├── stringid │ │ ├── README.md │ │ └── stringid.go │ ├── stringutils │ │ ├── README.md │ │ └── stringutils.go │ ├── system │ │ ├── chmod.go │ │ ├── chtimes.go │ │ ├── chtimes_unix.go │ │ ├── chtimes_windows.go │ │ ├── errors.go │ │ ├── exitcode.go │ │ ├── extattr_freebsd.go │ │ ├── extattr_unsupported.go │ │ ├── init.go │ │ ├── init_windows.go │ │ ├── lchflags_bsd.go │ │ ├── lchown.go │ │ ├── lcow_unix.go │ │ ├── lcow_windows.go │ │ ├── lstat_unix.go │ │ ├── lstat_windows.go │ │ ├── meminfo.go │ │ ├── meminfo_freebsd.go │ │ ├── meminfo_linux.go │ │ ├── meminfo_solaris.go │ │ ├── meminfo_unsupported.go │ │ ├── meminfo_windows.go │ │ ├── mknod.go │ │ ├── mknod_freebsd.go │ │ ├── mknod_windows.go │ │ ├── path.go │ │ ├── path_unix.go │ │ ├── path_windows.go │ │ ├── process_unix.go │ │ ├── rm.go │ │ ├── rm_common.go │ │ ├── rm_freebsd.go │ │ ├── stat_common.go │ │ ├── stat_darwin.go │ │ ├── stat_freebsd.go │ │ ├── stat_linux.go │ │ ├── stat_netbsd.go │ │ ├── stat_openbsd.go │ │ ├── stat_solaris.go │ │ ├── stat_unix.go │ │ ├── stat_windows.go │ │ ├── syscall_unix.go │ │ ├── syscall_windows.go │ │ ├── umask.go │ │ ├── umask_windows.go │ │ ├── utimes_freebsd.go │ │ ├── utimes_linux.go │ │ ├── utimes_unsupported.go │ │ ├── xattrs_darwin.go │ │ ├── xattrs_freebsd.go │ │ ├── xattrs_linux.go │ │ └── xattrs_unsupported.go │ ├── tarlog │ │ └── tarlogger.go │ ├── truncindex │ │ └── truncindex.go │ └── unshare │ │ ├── getenv_linux_cgo.go │ │ ├── getenv_linux_nocgo.go │ │ ├── unshare.c │ │ ├── unshare.go │ │ ├── unshare_cgo.go │ │ ├── unshare_darwin.go │ │ ├── unshare_freebsd.c │ │ ├── unshare_freebsd.go │ │ ├── unshare_gccgo.go │ │ ├── unshare_linux.go │ │ ├── unshare_unsupported.go │ │ └── unshare_unsupported_cgo.go │ ├── storage.conf │ ├── storage.conf-freebsd │ ├── store.go │ ├── types │ ├── default_override_test.conf │ ├── errors.go │ ├── idmappings.go │ ├── options.go │ ├── options_bsd.go │ ├── options_darwin.go │ ├── options_linux.go │ ├── options_windows.go │ ├── storage_broken.conf │ ├── storage_test.conf │ └── utils.go │ ├── userns.go │ ├── userns_unsupported.go │ └── utils.go ├── go.yaml.in └── yaml │ └── v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── argon2 │ │ ├── argon2.go │ │ ├── blake2b.go │ │ ├── blamka_amd64.go │ │ ├── blamka_amd64.s │ │ ├── blamka_generic.go │ │ └── blamka_ref.go │ ├── bcrypt │ │ ├── base64.go │ │ └── bcrypt.go │ ├── blake2b │ │ ├── blake2b.go │ │ ├── blake2bAVX2_amd64.go │ │ ├── blake2bAVX2_amd64.s │ │ ├── blake2b_amd64.s │ │ ├── blake2b_generic.go │ │ ├── blake2b_ref.go │ │ ├── blake2x.go │ │ ├── go125.go │ │ └── register.go │ ├── blowfish │ │ ├── block.go │ │ ├── cipher.go │ │ └── const.go │ ├── cast5 │ │ └── cast5.go │ ├── chacha20 │ │ ├── chacha_arm64.go │ │ ├── chacha_arm64.s │ │ ├── chacha_generic.go │ │ ├── chacha_noasm.go │ │ ├── chacha_ppc64x.go │ │ ├── chacha_ppc64x.s │ │ ├── chacha_s390x.go │ │ ├── chacha_s390x.s │ │ └── xor.go │ ├── cryptobyte │ │ ├── asn1.go │ │ ├── asn1 │ │ │ └── asn1.go │ │ ├── builder.go │ │ └── string.go │ ├── curve25519 │ │ └── curve25519.go │ ├── internal │ │ ├── alias │ │ │ ├── alias.go │ │ │ └── alias_purego.go │ │ └── poly1305 │ │ │ ├── mac_noasm.go │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_asm.go │ │ │ ├── sum_generic.go │ │ │ ├── sum_loong64.s │ │ │ ├── sum_ppc64x.s │ │ │ ├── sum_s390x.go │ │ │ └── sum_s390x.s │ ├── nacl │ │ └── secretbox │ │ │ └── secretbox.go │ ├── openpgp │ │ ├── armor │ │ │ ├── armor.go │ │ │ └── encode.go │ │ ├── canonical_text.go │ │ ├── elgamal │ │ │ └── elgamal.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── keys.go │ │ ├── packet │ │ │ ├── compressed.go │ │ │ ├── config.go │ │ │ ├── encrypted_key.go │ │ │ ├── literal.go │ │ │ ├── ocfb.go │ │ │ ├── one_pass_signature.go │ │ │ ├── opaque.go │ │ │ ├── packet.go │ │ │ ├── private_key.go │ │ │ ├── public_key.go │ │ │ ├── public_key_v3.go │ │ │ ├── reader.go │ │ │ ├── signature.go │ │ │ ├── signature_v3.go │ │ │ ├── symmetric_key_encrypted.go │ │ │ ├── symmetrically_encrypted.go │ │ │ ├── userattribute.go │ │ │ └── userid.go │ │ ├── read.go │ │ ├── s2k │ │ │ └── s2k.go │ │ └── write.go │ ├── pbkdf2 │ │ └── pbkdf2.go │ ├── ripemd160 │ │ ├── ripemd160.go │ │ └── ripemd160block.go │ ├── salsa20 │ │ └── salsa │ │ │ ├── hsalsa20.go │ │ │ ├── salsa208.go │ │ │ ├── salsa20_amd64.go │ │ │ ├── salsa20_amd64.s │ │ │ ├── salsa20_noasm.go │ │ │ └── salsa20_ref.go │ ├── scrypt │ │ └── scrypt.go │ ├── sha3 │ │ ├── hashes.go │ │ ├── legacy_hash.go │ │ ├── legacy_keccakf.go │ │ └── shake.go │ ├── ssh │ │ ├── agent │ │ │ ├── client.go │ │ │ ├── forward.go │ │ │ ├── keyring.go │ │ │ └── server.go │ │ ├── buffer.go │ │ ├── certs.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── handshake.go │ │ ├── internal │ │ │ └── bcrypt_pbkdf │ │ │ │ └── bcrypt_pbkdf.go │ │ ├── kex.go │ │ ├── keys.go │ │ ├── mac.go │ │ ├── messages.go │ │ ├── mlkem.go │ │ ├── mux.go │ │ ├── server.go │ │ ├── session.go │ │ ├── ssh_gss.go │ │ ├── streamlocal.go │ │ ├── tcpip.go │ │ └── transport.go │ ├── twofish │ │ └── twofish.go │ └── xts │ │ └── xts.go │ ├── mod │ ├── LICENSE │ ├── PATENTS │ └── semver │ │ └── semver.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── ascii.go │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── config.go │ │ ├── config_go125.go │ │ ├── config_go126.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── gotrack.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ ├── static_table.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── unencrypted.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority_rfc7540.go │ │ ├── writesched_priority_rfc9218.go │ │ ├── writesched_random.go │ │ └── writesched_roundrobin.go │ ├── idna │ │ ├── go118.go │ │ ├── idna10.0.0.go │ │ ├── idna9.0.0.go │ │ ├── pre_go118.go │ │ ├── punycode.go │ │ ├── tables10.0.0.go │ │ ├── tables11.0.0.go │ │ ├── tables12.0.0.go │ │ ├── tables13.0.0.go │ │ ├── tables15.0.0.go │ │ ├── tables9.0.0.go │ │ ├── trie.go │ │ ├── trie12.0.0.go │ │ ├── trie13.0.0.go │ │ └── trieval.go │ ├── internal │ │ ├── httpcommon │ │ │ ├── ascii.go │ │ │ ├── headermap.go │ │ │ └── request.go │ │ └── timeseries │ │ │ └── timeseries.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ └── trace.go │ ├── sync │ ├── LICENSE │ ├── PATENTS │ ├── errgroup │ │ └── errgroup.go │ └── semaphore │ │ └── semaphore.go │ ├── sys │ ├── LICENSE │ ├── PATENTS │ ├── cpu │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_x86_gc.s │ │ ├── byteorder.go │ │ ├── cpu.go │ │ ├── cpu_aix.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_arm64.s │ │ ├── cpu_darwin_x86.go │ │ ├── cpu_gc_arm64.go │ │ ├── cpu_gc_s390x.go │ │ ├── cpu_gc_x86.go │ │ ├── cpu_gc_x86.s │ │ ├── cpu_gccgo_arm64.go │ │ ├── cpu_gccgo_s390x.go │ │ ├── cpu_gccgo_x86.c │ │ ├── cpu_gccgo_x86.go │ │ ├── cpu_linux.go │ │ ├── cpu_linux_arm.go │ │ ├── cpu_linux_arm64.go │ │ ├── cpu_linux_loong64.go │ │ ├── cpu_linux_mips64x.go │ │ ├── cpu_linux_noinit.go │ │ ├── cpu_linux_ppc64x.go │ │ ├── cpu_linux_riscv64.go │ │ ├── cpu_linux_s390x.go │ │ ├── cpu_loong64.go │ │ ├── cpu_loong64.s │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_netbsd_arm64.go │ │ ├── cpu_openbsd_arm64.go │ │ ├── cpu_openbsd_arm64.s │ │ ├── cpu_other_arm.go │ │ ├── cpu_other_arm64.go │ │ ├── cpu_other_mips64x.go │ │ ├── cpu_other_ppc64x.go │ │ ├── cpu_other_riscv64.go │ │ ├── cpu_other_x86.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_riscv64.go │ │ ├── cpu_s390x.go │ │ ├── cpu_s390x.s │ │ ├── cpu_wasm.go │ │ ├── cpu_x86.go │ │ ├── cpu_zos.go │ │ ├── cpu_zos_s390x.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── hwcap_linux.go │ │ ├── parse.go │ │ ├── proc_cpuinfo_linux.go │ │ ├── runtime_auxv.go │ │ ├── runtime_auxv_go121.go │ │ ├── syscall_aix_gccgo.go │ │ ├── syscall_aix_ppc64_gc.go │ │ └── syscall_darwin_x86_gc.go │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_bsd_386.s │ │ ├── asm_bsd_amd64.s │ │ ├── asm_bsd_arm.s │ │ ├── asm_bsd_arm64.s │ │ ├── asm_bsd_ppc64.s │ │ ├── asm_bsd_riscv64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_loong64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_openbsd_mips64.s │ │ ├── asm_solaris_amd64.s │ │ ├── asm_zos_s390x.s │ │ ├── auxv.go │ │ ├── auxv_unsupported.go │ │ ├── bluetooth_linux.go │ │ ├── bpxsvc_zos.go │ │ ├── bpxsvc_zos.s │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dev_zos.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── fdset.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ifreq_linux.go │ │ ├── ioctl_linux.go │ │ ├── ioctl_signed.go │ │ ├── ioctl_unsigned.go │ │ ├── ioctl_zos.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mmap_nomremap.go │ │ ├── mremap.go │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── ptrace_darwin.go │ │ ├── ptrace_ios.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_dragonfly.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── sockcmsg_unix_other.go │ │ ├── sockcmsg_zos.go │ │ ├── symaddr_zos_s390x.s │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_freebsd_riscv64.go │ │ ├── syscall_hurd.go │ │ ├── syscall_hurd_386.go │ │ ├── syscall_illumos.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_alarm.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gc_arm.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_loong64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_openbsd_libc.go │ │ ├── syscall_openbsd_mips64.go │ │ ├── syscall_openbsd_ppc64.go │ │ ├── syscall_openbsd_riscv64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── syscall_zos_s390x.go │ │ ├── sysvshm_linux.go │ │ ├── sysvshm_unix.go │ │ ├── sysvshm_unix_other.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── vgetrandom_linux.go │ │ ├── vgetrandom_unsupported.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_freebsd_riscv64.go │ │ ├── zerrors_linux.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_loong64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_openbsd_mips64.go │ │ ├── zerrors_openbsd_ppc64.go │ │ ├── zerrors_openbsd_riscv64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zerrors_zos_s390x.go │ │ ├── zptrace_armnn_linux.go │ │ ├── zptrace_linux_arm64.go │ │ ├── zptrace_mipsnn_linux.go │ │ ├── zptrace_mipsnnle_linux.go │ │ ├── zptrace_x86_linux.go │ │ ├── zsymaddr_zos_s390x.s │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_freebsd_riscv64.go │ │ ├── zsyscall_illumos_amd64.go │ │ ├── zsyscall_linux.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_loong64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_386.s │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_amd64.s │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm.s │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_openbsd_arm64.s │ │ ├── zsyscall_openbsd_mips64.go │ │ ├── zsyscall_openbsd_mips64.s │ │ ├── zsyscall_openbsd_ppc64.go │ │ ├── zsyscall_openbsd_ppc64.s │ │ ├── zsyscall_openbsd_riscv64.go │ │ ├── zsyscall_openbsd_riscv64.s │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsyscall_zos_s390x.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysctl_openbsd_mips64.go │ │ ├── zsysctl_openbsd_ppc64.go │ │ ├── zsysctl_openbsd_riscv64.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_freebsd_riscv64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_loong64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── zsysnum_openbsd_mips64.go │ │ ├── zsysnum_openbsd_ppc64.go │ │ ├── zsysnum_openbsd_riscv64.go │ │ ├── zsysnum_zos_s390x.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_freebsd_riscv64.go │ │ ├── ztypes_linux.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_loong64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ ├── ztypes_openbsd_mips64.go │ │ ├── ztypes_openbsd_ppc64.go │ │ ├── ztypes_openbsd_riscv64.go │ │ ├── ztypes_solaris_amd64.go │ │ └── ztypes_zos_s390x.go │ └── windows │ │ ├── aliases.go │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkknownfolderids.bash │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── setupapi_windows.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ ├── types_windows_arm64.go │ │ ├── zerrors_windows.go │ │ ├── zknownfolderids_windows.go │ │ └── zsyscall_windows.go │ ├── term │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── term.go │ ├── term_plan9.go │ ├── term_unix.go │ ├── term_unix_bsd.go │ ├── term_unix_other.go │ ├── term_unsupported.go │ ├── term_windows.go │ └── terminal.go │ └── text │ ├── LICENSE │ ├── PATENTS │ ├── secure │ └── bidirule │ │ ├── bidirule.go │ │ ├── bidirule10.0.0.go │ │ └── bidirule9.0.0.go │ ├── transform │ └── transform.go │ └── unicode │ ├── bidi │ ├── bidi.go │ ├── bracket.go │ ├── core.go │ ├── prop.go │ ├── tables10.0.0.go │ ├── tables11.0.0.go │ ├── tables12.0.0.go │ ├── tables13.0.0.go │ ├── tables15.0.0.go │ ├── tables9.0.0.go │ └── trieval.go │ └── norm │ ├── composition.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables10.0.0.go │ ├── tables11.0.0.go │ ├── tables12.0.0.go │ ├── tables13.0.0.go │ ├── tables15.0.0.go │ ├── tables9.0.0.go │ ├── transform.go │ └── trie.go ├── google.golang.org ├── genproto │ └── googleapis │ │ ├── api │ │ ├── LICENSE │ │ ├── annotations │ │ │ ├── annotations.pb.go │ │ │ ├── client.pb.go │ │ │ ├── field_behavior.pb.go │ │ │ ├── field_info.pb.go │ │ │ ├── http.pb.go │ │ │ ├── resource.pb.go │ │ │ └── routing.pb.go │ │ └── launch_stage.pb.go │ │ └── rpc │ │ ├── LICENSE │ │ └── status │ │ └── status.pb.go ├── grpc │ ├── AUTHORS │ ├── CODE-OF-CONDUCT.md │ ├── CONTRIBUTING.md │ ├── GOVERNANCE.md │ ├── LICENSE │ ├── MAINTAINERS.md │ ├── Makefile │ ├── NOTICE.txt │ ├── README.md │ ├── SECURITY.md │ ├── attributes │ │ └── attributes.go │ ├── backoff.go │ ├── backoff │ │ └── backoff.go │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ ├── conn_state_evaluator.go │ │ ├── endpointsharding │ │ │ └── endpointsharding.go │ │ ├── grpclb │ │ │ └── state │ │ │ │ └── state.go │ │ ├── pickfirst │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ ├── pickfirst.go │ │ │ └── pickfirstleaf │ │ │ │ └── pickfirstleaf.go │ │ ├── roundrobin │ │ │ └── roundrobin.go │ │ └── subconn.go │ ├── balancer_wrapper.go │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ ├── call.go │ ├── channelz │ │ └── channelz.go │ ├── clientconn.go │ ├── codec.go │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ ├── connectivity │ │ └── connectivity.go │ ├── credentials │ │ ├── credentials.go │ │ ├── insecure │ │ │ └── insecure.go │ │ └── tls.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ │ ├── encoding.go │ │ ├── encoding_v2.go │ │ └── proto │ │ │ └── proto.go │ ├── experimental │ │ └── stats │ │ │ ├── metricregistry.go │ │ │ └── metrics.go │ ├── grpclog │ │ ├── component.go │ │ ├── grpclog.go │ │ ├── internal │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── logger.go │ │ └── loggerv2.go │ ├── interceptor.go │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ └── gracefulswitch │ │ │ │ ├── config.go │ │ │ │ └── gracefulswitch.go │ │ ├── balancerload │ │ │ └── load.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ └── sink.go │ │ ├── buffer │ │ │ └── unbounded.go │ │ ├── channelz │ │ │ ├── channel.go │ │ │ ├── channelmap.go │ │ │ ├── funcs.go │ │ │ ├── logging.go │ │ │ ├── server.go │ │ │ ├── socket.go │ │ │ ├── subchannel.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_nonlinux.go │ │ │ └── trace.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── spiffe.go │ │ │ ├── syscallconn.go │ │ │ └── util.go │ │ ├── envconfig │ │ │ ├── envconfig.go │ │ │ ├── observability.go │ │ │ └── xds.go │ │ ├── experimental.go │ │ ├── grpclog │ │ │ └── prefix_logger.go │ │ ├── grpcsync │ │ │ ├── callback_serializer.go │ │ │ ├── event.go │ │ │ └── pubsub.go │ │ ├── grpcutil │ │ │ ├── compressor.go │ │ │ ├── encode_duration.go │ │ │ ├── grpcutil.go │ │ │ ├── metadata.go │ │ │ ├── method.go │ │ │ └── regex.go │ │ ├── idle │ │ │ └── idle.go │ │ ├── internal.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── pretty │ │ │ └── pretty.go │ │ ├── proxyattributes │ │ │ └── proxyattributes.go │ │ ├── resolver │ │ │ ├── config_selector.go │ │ │ ├── delegatingresolver │ │ │ │ └── delegatingresolver.go │ │ │ ├── dns │ │ │ │ ├── dns_resolver.go │ │ │ │ └── internal │ │ │ │ │ └── internal.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── unix │ │ │ │ └── unix.go │ │ ├── serviceconfig │ │ │ ├── duration.go │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── labels.go │ │ │ └── metrics_recorder_list.go │ │ ├── status │ │ │ └── status.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ ├── tcp_keepalive_others.go │ │ ├── tcp_keepalive_unix.go │ │ ├── tcp_keepalive_windows.go │ │ └── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── client_stream.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── logging.go │ │ │ ├── networktype │ │ │ └── networktype.go │ │ │ ├── proxy.go │ │ │ ├── server_stream.go │ │ │ └── transport.go │ ├── keepalive │ │ └── keepalive.go │ ├── mem │ │ ├── buffer_pool.go │ │ ├── buffer_slice.go │ │ └── buffers.go │ ├── metadata │ │ └── metadata.go │ ├── peer │ │ └── peer.go │ ├── picker_wrapper.go │ ├── preloader.go │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── map.go │ │ └── resolver.go │ ├── resolver_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── serviceconfig │ │ └── serviceconfig.go │ ├── stats │ │ ├── handlers.go │ │ ├── metrics.go │ │ └── stats.go │ ├── status │ │ └── status.go │ ├── stream.go │ ├── stream_interfaces.go │ ├── tap │ │ └── tap.go │ ├── trace.go │ ├── trace_notrace.go │ ├── trace_withtrace.go │ └── version.go └── protobuf │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── protojson │ │ ├── decode.go │ │ ├── doc.go │ │ ├── encode.go │ │ └── well_known_types.go │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── editiondefaults │ │ ├── defaults.go │ │ └── editions_defaults.binpb │ ├── editionssupport │ │ └── editions.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── json │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ └── encode.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ └── errors.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ ├── editions.go │ │ ├── placeholder.go │ │ └── presence.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── go_features_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── name.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── api_export_opaque.go │ │ ├── bitmap.go │ │ ├── bitmap_race.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_field_opaque.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_message.go │ │ ├── codec_message_opaque.go │ │ ├── codec_messageset.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── lazy.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_opaque.go │ │ ├── message_opaque_gen.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_field_gen.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_opaque.go │ │ ├── presence.go │ │ └── validate.go │ ├── order │ │ ├── order.go │ │ └── range.go │ ├── pragma │ │ └── pragma.go │ ├── protolazy │ │ ├── bufferreader.go │ │ ├── lazy.go │ │ └── pointer_unsafe.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ ├── wrapperopaque.go │ └── wrappers.go │ ├── protoadapt │ └── convert.go │ ├── reflect │ ├── protodesc │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_resolve.go │ │ ├── desc_validate.go │ │ ├── editions.go │ │ └── proto.go │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── source_gen.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_equal.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ ├── runtime │ ├── protoiface │ │ ├── legacy.go │ │ └── methods.go │ └── protoimpl │ │ ├── impl.go │ │ └── version.go │ └── types │ ├── descriptorpb │ └── descriptor.pb.go │ ├── gofeaturespb │ └── go_features.pb.go │ └── known │ ├── anypb │ └── any.pb.go │ ├── durationpb │ └── duration.pb.go │ └── timestamppb │ └── timestamp.pb.go ├── gopkg.in └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── k8s.io └── klog │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── klog.go │ └── klog_file.go ├── modules.txt ├── sigs.k8s.io └── yaml │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── fields.go │ └── yaml.go └── tags.cncf.io └── container-device-interface ├── LICENSE ├── internal └── validation │ ├── k8s │ ├── objectmeta.go │ └── validation.go │ └── validate.go ├── pkg ├── cdi │ ├── annotations.go │ ├── cache.go │ ├── container-edits.go │ ├── container-edits_unix.go │ ├── container-edits_windows.go │ ├── default-cache.go │ ├── device.go │ ├── doc.go │ ├── oci.go │ ├── spec-dirs.go │ ├── spec.go │ ├── spec_linux.go │ └── spec_other.go └── parser │ └── parser.go └── specs-go ├── LICENSE ├── config.go └── version.go /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.codespellrc -------------------------------------------------------------------------------- /.fmf/version: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.github/ISSUE_TEMPLATE/config.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/.packit.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/SECURITY.md -------------------------------------------------------------------------------- /add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/add.go -------------------------------------------------------------------------------- /bind/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/bind/mount.go -------------------------------------------------------------------------------- /bind/mount_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/bind/mount_unsupported.go -------------------------------------------------------------------------------- /bind/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/bind/util.go -------------------------------------------------------------------------------- /btrfs_installed_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/btrfs_installed_tag.sh -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/changelog.txt -------------------------------------------------------------------------------- /chroot/run_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/run_common.go -------------------------------------------------------------------------------- /chroot/run_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/run_freebsd.go -------------------------------------------------------------------------------- /chroot/run_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/run_linux.go -------------------------------------------------------------------------------- /chroot/run_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/run_linux_test.go -------------------------------------------------------------------------------- /chroot/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/run_test.go -------------------------------------------------------------------------------- /chroot/seccomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/seccomp.go -------------------------------------------------------------------------------- /chroot/seccomp_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/seccomp_freebsd.go -------------------------------------------------------------------------------- /chroot/seccomp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/seccomp_test.go -------------------------------------------------------------------------------- /chroot/seccomp_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/seccomp_unsupported.go -------------------------------------------------------------------------------- /chroot/seccomp_unsupported_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/seccomp_unsupported_test.go -------------------------------------------------------------------------------- /chroot/selinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/selinux.go -------------------------------------------------------------------------------- /chroot/selinux_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/selinux_unsupported.go -------------------------------------------------------------------------------- /chroot/unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/chroot/unsupported.go -------------------------------------------------------------------------------- /cmd/buildah/addcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/addcopy.go -------------------------------------------------------------------------------- /cmd/buildah/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/build.go -------------------------------------------------------------------------------- /cmd/buildah/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/commit.go -------------------------------------------------------------------------------- /cmd/buildah/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/common.go -------------------------------------------------------------------------------- /cmd/buildah/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/common_test.go -------------------------------------------------------------------------------- /cmd/buildah/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/config.go -------------------------------------------------------------------------------- /cmd/buildah/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/containers.go -------------------------------------------------------------------------------- /cmd/buildah/containers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/containers_test.go -------------------------------------------------------------------------------- /cmd/buildah/dumpbolt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/dumpbolt.go -------------------------------------------------------------------------------- /cmd/buildah/from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/from.go -------------------------------------------------------------------------------- /cmd/buildah/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/images.go -------------------------------------------------------------------------------- /cmd/buildah/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/images_test.go -------------------------------------------------------------------------------- /cmd/buildah/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/info.go -------------------------------------------------------------------------------- /cmd/buildah/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/inspect.go -------------------------------------------------------------------------------- /cmd/buildah/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/login.go -------------------------------------------------------------------------------- /cmd/buildah/logout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/logout.go -------------------------------------------------------------------------------- /cmd/buildah/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/main.go -------------------------------------------------------------------------------- /cmd/buildah/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/manifest.go -------------------------------------------------------------------------------- /cmd/buildah/mkcw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/mkcw.go -------------------------------------------------------------------------------- /cmd/buildah/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/mount.go -------------------------------------------------------------------------------- /cmd/buildah/prune.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/prune.go -------------------------------------------------------------------------------- /cmd/buildah/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/pull.go -------------------------------------------------------------------------------- /cmd/buildah/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/push.go -------------------------------------------------------------------------------- /cmd/buildah/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/rename.go -------------------------------------------------------------------------------- /cmd/buildah/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/rm.go -------------------------------------------------------------------------------- /cmd/buildah/rmi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/rmi.go -------------------------------------------------------------------------------- /cmd/buildah/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/run.go -------------------------------------------------------------------------------- /cmd/buildah/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/source.go -------------------------------------------------------------------------------- /cmd/buildah/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/tag.go -------------------------------------------------------------------------------- /cmd/buildah/umount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/umount.go -------------------------------------------------------------------------------- /cmd/buildah/unshare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/unshare.go -------------------------------------------------------------------------------- /cmd/buildah/unshare_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/unshare_unsupported.go -------------------------------------------------------------------------------- /cmd/buildah/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/cmd/buildah/version.go -------------------------------------------------------------------------------- /commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/commit.go -------------------------------------------------------------------------------- /commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/commit_test.go -------------------------------------------------------------------------------- /common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/common.go -------------------------------------------------------------------------------- /common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/common_test.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/config.go -------------------------------------------------------------------------------- /contrib/buildahimage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/buildahimage/README.md -------------------------------------------------------------------------------- /contrib/cirrus/bors-ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/cirrus/bors-ng.png -------------------------------------------------------------------------------- /contrib/cirrus/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/cirrus/build.sh -------------------------------------------------------------------------------- /contrib/cirrus/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/cirrus/lib.sh -------------------------------------------------------------------------------- /contrib/cirrus/logcollector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/cirrus/logcollector.sh -------------------------------------------------------------------------------- /contrib/cirrus/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/cirrus/setup.sh -------------------------------------------------------------------------------- /contrib/cirrus/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/cirrus/test.sh -------------------------------------------------------------------------------- /contrib/cirrus/timestamp.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/cirrus/timestamp.awk -------------------------------------------------------------------------------- /contrib/completions/bash/buildah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/completions/bash/buildah -------------------------------------------------------------------------------- /contrib/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/contrib/docker/Dockerfile -------------------------------------------------------------------------------- /convertcw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/convertcw.go -------------------------------------------------------------------------------- /convertcw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/convertcw_test.go -------------------------------------------------------------------------------- /copier/copier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/copier.go -------------------------------------------------------------------------------- /copier/copier_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/copier_linux_test.go -------------------------------------------------------------------------------- /copier/copier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/copier_test.go -------------------------------------------------------------------------------- /copier/copier_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/copier_unix_test.go -------------------------------------------------------------------------------- /copier/copier_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/copier_windows_test.go -------------------------------------------------------------------------------- /copier/hardlink_not_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/hardlink_not_uint64.go -------------------------------------------------------------------------------- /copier/hardlink_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/hardlink_uint64.go -------------------------------------------------------------------------------- /copier/hardlink_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/hardlink_unix.go -------------------------------------------------------------------------------- /copier/hardlink_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/hardlink_windows.go -------------------------------------------------------------------------------- /copier/mknod_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/mknod_int.go -------------------------------------------------------------------------------- /copier/mknod_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/mknod_uint64.go -------------------------------------------------------------------------------- /copier/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/syscall_unix.go -------------------------------------------------------------------------------- /copier/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/syscall_windows.go -------------------------------------------------------------------------------- /copier/xattrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/xattrs.go -------------------------------------------------------------------------------- /copier/xattrs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/xattrs_test.go -------------------------------------------------------------------------------- /copier/xattrs_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/copier/xattrs_unsupported.go -------------------------------------------------------------------------------- /define/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/build.go -------------------------------------------------------------------------------- /define/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/build_test.go -------------------------------------------------------------------------------- /define/isolation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/isolation.go -------------------------------------------------------------------------------- /define/mount_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/mount_freebsd.go -------------------------------------------------------------------------------- /define/mount_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/mount_linux.go -------------------------------------------------------------------------------- /define/mount_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/mount_unsupported.go -------------------------------------------------------------------------------- /define/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/namespace.go -------------------------------------------------------------------------------- /define/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/pull.go -------------------------------------------------------------------------------- /define/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/pull_test.go -------------------------------------------------------------------------------- /define/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/types.go -------------------------------------------------------------------------------- /define/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/types_test.go -------------------------------------------------------------------------------- /define/types_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/types_unix.go -------------------------------------------------------------------------------- /define/types_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/define/types_unsupported.go -------------------------------------------------------------------------------- /delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/delete.go -------------------------------------------------------------------------------- /demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/demos/README.md -------------------------------------------------------------------------------- /demos/buildah-bud-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/demos/buildah-bud-demo.sh -------------------------------------------------------------------------------- /demos/buildah-scratch-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/demos/buildah-scratch-demo.sh -------------------------------------------------------------------------------- /demos/buildah_multi_stage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/demos/buildah_multi_stage.sh -------------------------------------------------------------------------------- /demos/docker-compatibility-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/demos/docker-compatibility-demo.sh -------------------------------------------------------------------------------- /developmentplan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/developmentplan.md -------------------------------------------------------------------------------- /digester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/digester.go -------------------------------------------------------------------------------- /digester_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/digester_test.go -------------------------------------------------------------------------------- /docker/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docker/AUTHORS -------------------------------------------------------------------------------- /docker/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docker/types.go -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/buildah-add.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-add.1.md -------------------------------------------------------------------------------- /docs/buildah-build.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-build.1.md -------------------------------------------------------------------------------- /docs/buildah-commit.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-commit.1.md -------------------------------------------------------------------------------- /docs/buildah-config.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-config.1.md -------------------------------------------------------------------------------- /docs/buildah-containers.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-containers.1.md -------------------------------------------------------------------------------- /docs/buildah-copy.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-copy.1.md -------------------------------------------------------------------------------- /docs/buildah-from.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-from.1.md -------------------------------------------------------------------------------- /docs/buildah-images.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-images.1.md -------------------------------------------------------------------------------- /docs/buildah-info.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-info.1.md -------------------------------------------------------------------------------- /docs/buildah-inspect.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-inspect.1.md -------------------------------------------------------------------------------- /docs/buildah-login.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-login.1.md -------------------------------------------------------------------------------- /docs/buildah-logout.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-logout.1.md -------------------------------------------------------------------------------- /docs/buildah-manifest-add.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-manifest-add.1.md -------------------------------------------------------------------------------- /docs/buildah-manifest-create.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-manifest-create.1.md -------------------------------------------------------------------------------- /docs/buildah-manifest-exists.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-manifest-exists.1.md -------------------------------------------------------------------------------- /docs/buildah-manifest-inspect.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-manifest-inspect.1.md -------------------------------------------------------------------------------- /docs/buildah-manifest-push.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-manifest-push.1.md -------------------------------------------------------------------------------- /docs/buildah-manifest-remove.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-manifest-remove.1.md -------------------------------------------------------------------------------- /docs/buildah-manifest-rm.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-manifest-rm.1.md -------------------------------------------------------------------------------- /docs/buildah-manifest.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-manifest.1.md -------------------------------------------------------------------------------- /docs/buildah-mkcw.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-mkcw.1.md -------------------------------------------------------------------------------- /docs/buildah-mount.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-mount.1.md -------------------------------------------------------------------------------- /docs/buildah-prune.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-prune.1.md -------------------------------------------------------------------------------- /docs/buildah-pull.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-pull.1.md -------------------------------------------------------------------------------- /docs/buildah-push.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-push.1.md -------------------------------------------------------------------------------- /docs/buildah-rename.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-rename.1.md -------------------------------------------------------------------------------- /docs/buildah-rm.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-rm.1.md -------------------------------------------------------------------------------- /docs/buildah-rmi.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-rmi.1.md -------------------------------------------------------------------------------- /docs/buildah-run.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-run.1.md -------------------------------------------------------------------------------- /docs/buildah-source-add.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-source-add.1.md -------------------------------------------------------------------------------- /docs/buildah-source-create.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-source-create.1.md -------------------------------------------------------------------------------- /docs/buildah-source-pull.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-source-pull.1.md -------------------------------------------------------------------------------- /docs/buildah-source-push.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-source-push.1.md -------------------------------------------------------------------------------- /docs/buildah-source.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-source.1.md -------------------------------------------------------------------------------- /docs/buildah-tag.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-tag.1.md -------------------------------------------------------------------------------- /docs/buildah-umount.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-umount.1.md -------------------------------------------------------------------------------- /docs/buildah-unshare.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-unshare.1.md -------------------------------------------------------------------------------- /docs/buildah-version.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah-version.1.md -------------------------------------------------------------------------------- /docs/buildah.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/buildah.1.md -------------------------------------------------------------------------------- /docs/cni-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/cni-examples/README.md -------------------------------------------------------------------------------- /docs/containertools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/containertools/README.md -------------------------------------------------------------------------------- /docs/links/buildah-bud.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/links/buildah-bud.1 -------------------------------------------------------------------------------- /docs/release-announcements/v1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/release-announcements/v1.1.md -------------------------------------------------------------------------------- /docs/release-announcements/v1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/release-announcements/v1.2.md -------------------------------------------------------------------------------- /docs/release-announcements/v1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/release-announcements/v1.3.md -------------------------------------------------------------------------------- /docs/release-announcements/v1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/release-announcements/v1.4.md -------------------------------------------------------------------------------- /docs/release-announcements/v1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/release-announcements/v1.5.md -------------------------------------------------------------------------------- /docs/samples/registries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/samples/registries.conf -------------------------------------------------------------------------------- /docs/tutorials/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/tutorials/01-intro.md -------------------------------------------------------------------------------- /docs/tutorials/03-on-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/tutorials/03-on-build.md -------------------------------------------------------------------------------- /docs/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/docs/tutorials/README.md -------------------------------------------------------------------------------- /examples/all-the-things.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/examples/all-the-things.sh -------------------------------------------------------------------------------- /examples/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/examples/copy.sh -------------------------------------------------------------------------------- /examples/lighttpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/examples/lighttpd.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/go.sum -------------------------------------------------------------------------------- /hack/apparmor_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/hack/apparmor_tag.sh -------------------------------------------------------------------------------- /hack/build_speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/hack/build_speed.sh -------------------------------------------------------------------------------- /hack/check_vendor_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/hack/check_vendor_toolchain.sh -------------------------------------------------------------------------------- /hack/get_ci_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/hack/get_ci_vm.sh -------------------------------------------------------------------------------- /hack/libsubid_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/hack/libsubid_tag.sh -------------------------------------------------------------------------------- /hack/sqlite_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/hack/sqlite_tag.sh -------------------------------------------------------------------------------- /hack/systemd_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/hack/systemd_tag.sh -------------------------------------------------------------------------------- /hack/tree_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/hack/tree_status.sh -------------------------------------------------------------------------------- /hack/xref-helpmsgs-manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/hack/xref-helpmsgs-manpages -------------------------------------------------------------------------------- /image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/image.go -------------------------------------------------------------------------------- /imagebuildah/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/imagebuildah/build.go -------------------------------------------------------------------------------- /imagebuildah/build_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/imagebuildah/build_linux.go -------------------------------------------------------------------------------- /imagebuildah/build_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/imagebuildah/build_linux_test.go -------------------------------------------------------------------------------- /imagebuildah/build_notlinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/imagebuildah/build_notlinux.go -------------------------------------------------------------------------------- /imagebuildah/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/imagebuildah/executor.go -------------------------------------------------------------------------------- /imagebuildah/stage_executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/imagebuildah/stage_executor.go -------------------------------------------------------------------------------- /imagebuildah/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/imagebuildah/util.go -------------------------------------------------------------------------------- /imagebuildah/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/imagebuildah/util_test.go -------------------------------------------------------------------------------- /import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/import.go -------------------------------------------------------------------------------- /info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/info.go -------------------------------------------------------------------------------- /install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/install.md -------------------------------------------------------------------------------- /internal/config/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/config/convert.go -------------------------------------------------------------------------------- /internal/config/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/config/convert_test.go -------------------------------------------------------------------------------- /internal/config/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/config/executor.go -------------------------------------------------------------------------------- /internal/config/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/config/executor_test.go -------------------------------------------------------------------------------- /internal/config/override.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/config/override.go -------------------------------------------------------------------------------- /internal/metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/metadata/metadata.go -------------------------------------------------------------------------------- /internal/mkcw/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/archive.go -------------------------------------------------------------------------------- /internal/mkcw/archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/archive_test.go -------------------------------------------------------------------------------- /internal/mkcw/attest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/attest.go -------------------------------------------------------------------------------- /internal/mkcw/embed/asm/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/embed/asm/doc.md -------------------------------------------------------------------------------- /internal/mkcw/embed/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/embed/check.sh -------------------------------------------------------------------------------- /internal/mkcw/embed/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/embed/doc.go -------------------------------------------------------------------------------- /internal/mkcw/embed/entrypoint.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /internal/mkcw/entrypoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/entrypoint.go -------------------------------------------------------------------------------- /internal/mkcw/luks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/luks.go -------------------------------------------------------------------------------- /internal/mkcw/luks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/luks_test.go -------------------------------------------------------------------------------- /internal/mkcw/makefs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/makefs.go -------------------------------------------------------------------------------- /internal/mkcw/types/attest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/types/attest.go -------------------------------------------------------------------------------- /internal/mkcw/types/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/types/workload.go -------------------------------------------------------------------------------- /internal/mkcw/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/workload.go -------------------------------------------------------------------------------- /internal/mkcw/workload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/mkcw/workload_test.go -------------------------------------------------------------------------------- /internal/open/open.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/open/open.go -------------------------------------------------------------------------------- /internal/open/open_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/open/open_linux.go -------------------------------------------------------------------------------- /internal/open/open_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/open/open_linux_test.go -------------------------------------------------------------------------------- /internal/open/open_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/open/open_test.go -------------------------------------------------------------------------------- /internal/open/open_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/open/open_types.go -------------------------------------------------------------------------------- /internal/open/open_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/open/open_unix.go -------------------------------------------------------------------------------- /internal/open/open_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/open/open_unsupported.go -------------------------------------------------------------------------------- /internal/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/parse/parse.go -------------------------------------------------------------------------------- /internal/pty/pty_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/pty/pty_posix.go -------------------------------------------------------------------------------- /internal/pty/pty_ptmx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/pty/pty_ptmx.go -------------------------------------------------------------------------------- /internal/pty/pty_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/pty/pty_unsupported.go -------------------------------------------------------------------------------- /internal/sanitize/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/sanitize/sanitize.go -------------------------------------------------------------------------------- /internal/sanitize/sanitize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/sanitize/sanitize_test.go -------------------------------------------------------------------------------- /internal/sbom/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/sbom/merge.go -------------------------------------------------------------------------------- /internal/sbom/merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/sbom/merge_test.go -------------------------------------------------------------------------------- /internal/sbom/presets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/sbom/presets.go -------------------------------------------------------------------------------- /internal/sbom/presets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/sbom/presets_test.go -------------------------------------------------------------------------------- /internal/source/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/source/add.go -------------------------------------------------------------------------------- /internal/source/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/source/create.go -------------------------------------------------------------------------------- /internal/source/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/source/pull.go -------------------------------------------------------------------------------- /internal/source/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/source/push.go -------------------------------------------------------------------------------- /internal/source/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/source/source.go -------------------------------------------------------------------------------- /internal/tmpdir/tmpdir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/tmpdir/tmpdir.go -------------------------------------------------------------------------------- /internal/tmpdir/tmpdir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/tmpdir/tmpdir_test.go -------------------------------------------------------------------------------- /internal/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/types.go -------------------------------------------------------------------------------- /internal/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/util/util.go -------------------------------------------------------------------------------- /internal/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/util/util_test.go -------------------------------------------------------------------------------- /internal/volumes/bind_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/volumes/bind_linux.go -------------------------------------------------------------------------------- /internal/volumes/bind_notlinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/volumes/bind_notlinux.go -------------------------------------------------------------------------------- /internal/volumes/bind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/volumes/bind_test.go -------------------------------------------------------------------------------- /internal/volumes/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/volumes/volumes.go -------------------------------------------------------------------------------- /internal/volumes/volumes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/internal/volumes/volumes_test.go -------------------------------------------------------------------------------- /logos/buildah-logo-source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/logos/buildah-logo-source.svg -------------------------------------------------------------------------------- /logos/buildah-logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/logos/buildah-logo_large.png -------------------------------------------------------------------------------- /logos/buildah-logo_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/logos/buildah-logo_medium.png -------------------------------------------------------------------------------- /logos/buildah-logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/logos/buildah-logo_small.png -------------------------------------------------------------------------------- /logos/buildah-logomark_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/logos/buildah-logomark_large.png -------------------------------------------------------------------------------- /logos/buildah-logomark_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/logos/buildah-logomark_medium.png -------------------------------------------------------------------------------- /logos/buildah-logomark_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/logos/buildah-logomark_small.png -------------------------------------------------------------------------------- /manifests/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/manifests/compat.go -------------------------------------------------------------------------------- /mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/mount.go -------------------------------------------------------------------------------- /new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/new.go -------------------------------------------------------------------------------- /new_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/new_test.go -------------------------------------------------------------------------------- /pkg/binfmt/binfmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/binfmt/binfmt.go -------------------------------------------------------------------------------- /pkg/binfmt/binfmt_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/binfmt/binfmt_unsupported.go -------------------------------------------------------------------------------- /pkg/blobcache/blobcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/blobcache/blobcache.go -------------------------------------------------------------------------------- /pkg/chrootuser/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/chrootuser/user.go -------------------------------------------------------------------------------- /pkg/chrootuser/user_basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/chrootuser/user_basic.go -------------------------------------------------------------------------------- /pkg/chrootuser/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/chrootuser/user_test.go -------------------------------------------------------------------------------- /pkg/chrootuser/user_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/chrootuser/user_unix.go -------------------------------------------------------------------------------- /pkg/cli/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/cli/build.go -------------------------------------------------------------------------------- /pkg/cli/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/cli/common.go -------------------------------------------------------------------------------- /pkg/cli/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/cli/common_test.go -------------------------------------------------------------------------------- /pkg/cli/exec_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/cli/exec_codes.go -------------------------------------------------------------------------------- /pkg/completion/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/completion/completion.go -------------------------------------------------------------------------------- /pkg/dummy/dummy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/dummy/dummy_test.go -------------------------------------------------------------------------------- /pkg/formats/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/formats/doc.go -------------------------------------------------------------------------------- /pkg/formats/formats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/formats/formats.go -------------------------------------------------------------------------------- /pkg/formats/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/formats/templates.go -------------------------------------------------------------------------------- /pkg/jail/jail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/jail/jail.go -------------------------------------------------------------------------------- /pkg/jail/jail_int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/jail/jail_int32.go -------------------------------------------------------------------------------- /pkg/jail/jail_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/jail/jail_int64.go -------------------------------------------------------------------------------- /pkg/jail/jail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/jail/jail_test.go -------------------------------------------------------------------------------- /pkg/manifests/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/manifests/compat.go -------------------------------------------------------------------------------- /pkg/overlay/overlay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/overlay/overlay.go -------------------------------------------------------------------------------- /pkg/overlay/overlay_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/overlay/overlay_freebsd.go -------------------------------------------------------------------------------- /pkg/overlay/overlay_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/overlay/overlay_linux.go -------------------------------------------------------------------------------- /pkg/overlay/overlay_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/overlay/overlay_unsupported.go -------------------------------------------------------------------------------- /pkg/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/parse/parse.go -------------------------------------------------------------------------------- /pkg/parse/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/parse/parse_test.go -------------------------------------------------------------------------------- /pkg/parse/parse_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/parse/parse_unix.go -------------------------------------------------------------------------------- /pkg/parse/parse_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/parse/parse_unsupported.go -------------------------------------------------------------------------------- /pkg/rusage/rusage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/rusage/rusage.go -------------------------------------------------------------------------------- /pkg/rusage/rusage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/rusage/rusage_test.go -------------------------------------------------------------------------------- /pkg/rusage/rusage_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/rusage/rusage_unix.go -------------------------------------------------------------------------------- /pkg/rusage/rusage_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/rusage/rusage_unsupported.go -------------------------------------------------------------------------------- /pkg/sshagent/sshagent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/sshagent/sshagent.go -------------------------------------------------------------------------------- /pkg/sshagent/sshagent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/sshagent/sshagent_test.go -------------------------------------------------------------------------------- /pkg/supplemented/compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/supplemented/compat.go -------------------------------------------------------------------------------- /pkg/umask/umask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/umask/umask.go -------------------------------------------------------------------------------- /pkg/util/resource_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/resource_unix.go -------------------------------------------------------------------------------- /pkg/util/resource_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/resource_unix_test.go -------------------------------------------------------------------------------- /pkg/util/resource_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/resource_windows.go -------------------------------------------------------------------------------- /pkg/util/test/test1/Containerfile: -------------------------------------------------------------------------------- 1 | from scratch 2 | -------------------------------------------------------------------------------- /pkg/util/test/test1/Dockerfile: -------------------------------------------------------------------------------- 1 | from scratch 2 | -------------------------------------------------------------------------------- /pkg/util/test/test2/Dockerfile: -------------------------------------------------------------------------------- 1 | from scratch 2 | -------------------------------------------------------------------------------- /pkg/util/uptime_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/uptime_darwin.go -------------------------------------------------------------------------------- /pkg/util/uptime_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/uptime_freebsd.go -------------------------------------------------------------------------------- /pkg/util/uptime_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/uptime_linux.go -------------------------------------------------------------------------------- /pkg/util/uptime_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/uptime_netbsd.go -------------------------------------------------------------------------------- /pkg/util/uptime_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/uptime_windows.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/util.go -------------------------------------------------------------------------------- /pkg/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/util_test.go -------------------------------------------------------------------------------- /pkg/util/version_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/version_unix.go -------------------------------------------------------------------------------- /pkg/util/version_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/util/version_windows.go -------------------------------------------------------------------------------- /pkg/volumes/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pkg/volumes/volumes.go -------------------------------------------------------------------------------- /plans/main.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/plans/main.fmf -------------------------------------------------------------------------------- /pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/pull.go -------------------------------------------------------------------------------- /push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/push.go -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/release.sh -------------------------------------------------------------------------------- /rpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/rpm/Makefile -------------------------------------------------------------------------------- /rpm/buildah.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/rpm/buildah.spec -------------------------------------------------------------------------------- /rpm/gating.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/rpm/gating.yaml -------------------------------------------------------------------------------- /rpm/update-spec-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/rpm/update-spec-version.sh -------------------------------------------------------------------------------- /run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/run.go -------------------------------------------------------------------------------- /run_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/run_common.go -------------------------------------------------------------------------------- /run_common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/run_common_test.go -------------------------------------------------------------------------------- /run_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/run_freebsd.go -------------------------------------------------------------------------------- /run_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/run_linux.go -------------------------------------------------------------------------------- /run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/run_test.go -------------------------------------------------------------------------------- /run_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/run_unix.go -------------------------------------------------------------------------------- /run_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/run_unsupported.go -------------------------------------------------------------------------------- /scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/scan.go -------------------------------------------------------------------------------- /seccomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/seccomp.go -------------------------------------------------------------------------------- /seccomp_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/seccomp_unsupported.go -------------------------------------------------------------------------------- /selinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/selinux.go -------------------------------------------------------------------------------- /selinux_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/selinux_unsupported.go -------------------------------------------------------------------------------- /tests/NEW-IMAGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/NEW-IMAGES -------------------------------------------------------------------------------- /tests/add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/add.bats -------------------------------------------------------------------------------- /tests/authenticate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/authenticate.bats -------------------------------------------------------------------------------- /tests/basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/basic.bats -------------------------------------------------------------------------------- /tests/blobcache.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/blobcache.bats -------------------------------------------------------------------------------- /tests/bud.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud.bats -------------------------------------------------------------------------------- /tests/bud/add-chmod/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/add-chmod/Dockerfile -------------------------------------------------------------------------------- /tests/bud/add-chmod/Dockerfile.bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/add-chmod/Dockerfile.bad -------------------------------------------------------------------------------- /tests/bud/add-chmod/addchmod.txt: -------------------------------------------------------------------------------- 1 | File for testing ADD with chmod in a Dockerfile. 2 | -------------------------------------------------------------------------------- /tests/bud/add-chown/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/add-chown/Dockerfile -------------------------------------------------------------------------------- /tests/bud/add-chown/Dockerfile.bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/add-chown/Dockerfile.bad -------------------------------------------------------------------------------- /tests/bud/add-chown/addchown.txt: -------------------------------------------------------------------------------- 1 | File for testing COPY with chown in a Dockerfile. 2 | -------------------------------------------------------------------------------- /tests/bud/add-create-absolute-path/distutils.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/add-create-relative-path/distutils.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/add-file/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/add-file/Dockerfile -------------------------------------------------------------------------------- /tests/bud/add-file/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/add-file/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/add-run-dir/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN touch /run/hello 3 | -------------------------------------------------------------------------------- /tests/bud/addtl-tags/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | WORKDIR / 3 | -------------------------------------------------------------------------------- /tests/bud/all-platform/Containerfile.default-arg: -------------------------------------------------------------------------------- 1 | ARG foo=alpine 2 | FROM $foo 3 | -------------------------------------------------------------------------------- /tests/bud/base-with-arg/first.args: -------------------------------------------------------------------------------- 1 | CUSTOM_TARGET=first 2 | -------------------------------------------------------------------------------- /tests/bud/base-with-arg/second.args: -------------------------------------------------------------------------------- 1 | CUSTOM_TARGET=second 2 | -------------------------------------------------------------------------------- /tests/bud/bud.limits/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/bud.limits/Containerfile -------------------------------------------------------------------------------- /tests/bud/build-arg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/build-arg/Dockerfile -------------------------------------------------------------------------------- /tests/bud/build-arg/Dockerfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/build-arg/Dockerfile2 -------------------------------------------------------------------------------- /tests/bud/build-arg/Dockerfile3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/build-arg/Dockerfile3 -------------------------------------------------------------------------------- /tests/bud/build-arg/Dockerfile4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/build-arg/Dockerfile4 -------------------------------------------------------------------------------- /tests/bud/buildkit-mount-from/hello: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/bud/buildkit-mount-from/hello1: -------------------------------------------------------------------------------- 1 | hello1 2 | -------------------------------------------------------------------------------- /tests/bud/buildkit-mount-from/hello2: -------------------------------------------------------------------------------- 1 | hello2 2 | -------------------------------------------------------------------------------- /tests/bud/buildkit-mount/input_file: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/bud/buildkit-mount/subdir/input_file: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/bud/cache-chown/Dockerfile.add1: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD --chown=1:1 testfile / 3 | -------------------------------------------------------------------------------- /tests/bud/cache-chown/Dockerfile.add2: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD --chown=2:2 testfile / 3 | -------------------------------------------------------------------------------- /tests/bud/cache-chown/Dockerfile.copy1: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY --chown=1:1 testfile / 3 | -------------------------------------------------------------------------------- /tests/bud/cache-chown/Dockerfile.copy2: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY --chown=2:2 testfile / 3 | -------------------------------------------------------------------------------- /tests/bud/cache-chown/testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/cache-chown/testfile -------------------------------------------------------------------------------- /tests/bud/cache-format/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | COPY . . 3 | RUN pwd 4 | -------------------------------------------------------------------------------- /tests/bud/cache-from/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/cache-from/Containerfile -------------------------------------------------------------------------------- /tests/bud/cache-mount-locked/file: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/bud/cache-scratch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/cache-scratch/Dockerfile -------------------------------------------------------------------------------- /tests/bud/cache-stages/Dockerfile.1: -------------------------------------------------------------------------------- 1 | FROM alpine AS builder 2 | RUN touch /tmpfile 3 | -------------------------------------------------------------------------------- /tests/bud/capabilities/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | USER 3267 3 | RUN id; grep -i cap /proc/self/status 4 | -------------------------------------------------------------------------------- /tests/bud/cdi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/cdi/Dockerfile -------------------------------------------------------------------------------- /tests/bud/cdi/containers-cdi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/cdi/containers-cdi.yaml -------------------------------------------------------------------------------- /tests/bud/check-race/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/check-race/Containerfile -------------------------------------------------------------------------------- /tests/bud/commit/name-path-changes/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | RUN pwd 3 | -------------------------------------------------------------------------------- /tests/bud/container-ignoresymlink/hello: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/container-ignoresymlink/world: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/containeranddockerfile/Containerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | -------------------------------------------------------------------------------- /tests/bud/containeranddockerfile/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | -------------------------------------------------------------------------------- /tests/bud/containerignore/.dockerignore: -------------------------------------------------------------------------------- 1 | # comment 2 | * 3 | -------------------------------------------------------------------------------- /tests/bud/containerignore/Dockerfile.succeed: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | 3 | COPY ./ ./ 4 | -------------------------------------------------------------------------------- /tests/bud/containerignore/subdir/sub1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/containerignore/subdir/sub2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/containerignore/test1.txt: -------------------------------------------------------------------------------- 1 | test1 failed -------------------------------------------------------------------------------- /tests/bud/containerignore/test2.txt: -------------------------------------------------------------------------------- 1 | test2 failed -------------------------------------------------------------------------------- /tests/bud/context-escape-dir/testdir/Containerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | COPY ../upperfile.txt / 3 | -------------------------------------------------------------------------------- /tests/bud/copy-archive/Containerfile: -------------------------------------------------------------------------------- 1 | FROM docker.io/busybox 2 | ADD test.tar.xz / 3 | -------------------------------------------------------------------------------- /tests/bud/copy-chmod/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/copy-chmod/Dockerfile -------------------------------------------------------------------------------- /tests/bud/copy-chmod/copychmod.txt: -------------------------------------------------------------------------------- 1 | File for testing COPY with chmod in a Dockerfile. 2 | -------------------------------------------------------------------------------- /tests/bud/copy-chown/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/copy-chown/Dockerfile -------------------------------------------------------------------------------- /tests/bud/copy-chown/copychown.txt: -------------------------------------------------------------------------------- 1 | File for testing COPY with chown in a Dockerfile. 2 | -------------------------------------------------------------------------------- /tests/bud/copy-create-absolute-path/distutils.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-create-relative-path/distutils.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-envvar/file-0.0.1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-exclude/test1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-exclude/test2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-from/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/copy-from/Dockerfile -------------------------------------------------------------------------------- /tests/bud/copy-from/Dockerfile.bad: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | COPY --from registry.com/missing-equals/causes:error /foo /bar 3 | -------------------------------------------------------------------------------- /tests/bud/copy-from/Dockerfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/copy-from/Dockerfile2 -------------------------------------------------------------------------------- /tests/bud/copy-from/Dockerfile3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/copy-from/Dockerfile3 -------------------------------------------------------------------------------- /tests/bud/copy-from/Dockerfile4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/copy-from/Dockerfile4 -------------------------------------------------------------------------------- /tests/bud/copy-globs/Containerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | # *txt exists so should succeed 3 | COPY *.txt /testdir 4 | -------------------------------------------------------------------------------- /tests/bud/copy-globs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/copy-globs/Dockerfile -------------------------------------------------------------------------------- /tests/bud/copy-globs/test1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-globs/test2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-multiple-files/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-multiple-files/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-parents/x/a.txt: -------------------------------------------------------------------------------- 1 | A-FILE x 2 | -------------------------------------------------------------------------------- /tests/bud/copy-parents/x/y/a.txt: -------------------------------------------------------------------------------- 1 | A-FILE x/y 2 | -------------------------------------------------------------------------------- /tests/bud/copy-parents/x/y/b.txt: -------------------------------------------------------------------------------- 1 | Hello x/y 2 | -------------------------------------------------------------------------------- /tests/bud/copy-parents/x/z/a.txt: -------------------------------------------------------------------------------- 1 | A-FILE x/z 2 | -------------------------------------------------------------------------------- /tests/bud/copy-parents/x/z/b.txt: -------------------------------------------------------------------------------- 1 | Hello x/z 2 | -------------------------------------------------------------------------------- /tests/bud/copy-parents/y/a.txt: -------------------------------------------------------------------------------- 1 | A-FILE y 2 | -------------------------------------------------------------------------------- /tests/bud/copy-parents/y/b.txt: -------------------------------------------------------------------------------- 1 | Hello y 2 | -------------------------------------------------------------------------------- /tests/bud/copy-root/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu 2 | COPY distutils.cfg / 3 | -------------------------------------------------------------------------------- /tests/bud/copy-root/distutils.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/copy-workdir/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/copy-workdir/Dockerfile -------------------------------------------------------------------------------- /tests/bud/copy-workdir/file1.txt: -------------------------------------------------------------------------------- 1 | file1 2 | -------------------------------------------------------------------------------- /tests/bud/copy-workdir/file2.txt: -------------------------------------------------------------------------------- 1 | file2 2 | -------------------------------------------------------------------------------- /tests/bud/dest-symlink/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/dest-symlink/Dockerfile -------------------------------------------------------------------------------- /tests/bud/device/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN ls /dev/fuse 3 | -------------------------------------------------------------------------------- /tests/bud/dns/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:latest 2 | RUN cat /etc/resolv.conf -------------------------------------------------------------------------------- /tests/bud/dockerfile/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | -------------------------------------------------------------------------------- /tests/bud/dockerignore/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/dockerignore/Dockerfile -------------------------------------------------------------------------------- /tests/bud/dockerignore/Dockerfile.succeed: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | 3 | COPY ./ ./ 4 | -------------------------------------------------------------------------------- /tests/bud/dockerignore/subdir/sub1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore/subdir/sub2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore/test1.txt: -------------------------------------------------------------------------------- 1 | test1 failed -------------------------------------------------------------------------------- /tests/bud/dockerignore/test2.txt: -------------------------------------------------------------------------------- 1 | test2 failed -------------------------------------------------------------------------------- /tests/bud/dockerignore2/.dockerignore: -------------------------------------------------------------------------------- 1 | unmatched 2 | -------------------------------------------------------------------------------- /tests/bud/dockerignore2/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | -------------------------------------------------------------------------------- /tests/bud/dockerignore2/subdir/sub1.txt: -------------------------------------------------------------------------------- 1 | sub1 -------------------------------------------------------------------------------- /tests/bud/dockerignore2/subdir/subsubdir/subsub1.txt: -------------------------------------------------------------------------------- 1 | subsub1 2 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/BUILD.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/COPYRIGHT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/dockerignore3/Dockerfile -------------------------------------------------------------------------------- /tests/bud/dockerignore3/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/README-secret.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/dockerignore3/manifest -------------------------------------------------------------------------------- /tests/bud/dockerignore3/src/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/src/cmd/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/src/cmd/main.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/src/etc/foo.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/src/etc/foo.conf.d/dropin.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/src/lib/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/src/lib/framework.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/test1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/test2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore3/test3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/BUILD.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/COPYRIGHT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/README-secret.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/dockerignore4/manifest -------------------------------------------------------------------------------- /tests/bud/dockerignore4/src/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/src/cmd/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/src/cmd/main.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/src/etc/foo.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/src/etc/foo.conf.d/dropin.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/src/lib/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/src/lib/framework.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/test1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/test2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore4/test3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/dockerignore6/Dockerfile -------------------------------------------------------------------------------- /tests/bud/dockerignore6/Dockerfile.succeed: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | 3 | COPY ./ ./ 4 | -------------------------------------------------------------------------------- /tests/bud/dockerignore6/subdir/sub1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore6/subdir/sub2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bud/dockerignore6/test1.txt: -------------------------------------------------------------------------------- 1 | test1 failed -------------------------------------------------------------------------------- /tests/bud/dockerignore6/test2.txt: -------------------------------------------------------------------------------- 1 | test2 failed -------------------------------------------------------------------------------- /tests/bud/env/Dockerfile.check-env: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | ENV foo=bar 3 | -------------------------------------------------------------------------------- /tests/bud/env/Dockerfile.env-from-image: -------------------------------------------------------------------------------- 1 | FROM env-from-image 2 | RUN echo "@${envcheck}@" 3 | -------------------------------------------------------------------------------- /tests/bud/env/Dockerfile.special-chars: -------------------------------------------------------------------------------- 1 | FROM docker.io/ubuntu 2 | ENV LIB="$(PREFIX)/lib" 3 | 4 | -------------------------------------------------------------------------------- /tests/bud/exit42/Containerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN sh -c "exit 42" 3 | -------------------------------------------------------------------------------- /tests/bud/from-as/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/from-as/Dockerfile -------------------------------------------------------------------------------- /tests/bud/from-as/Dockerfile.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/from-as/Dockerfile.skip -------------------------------------------------------------------------------- /tests/bud/from-base/Containerfile: -------------------------------------------------------------------------------- 1 | FROM base 2 | ADD . . 3 | -------------------------------------------------------------------------------- /tests/bud/from-multiple-files/Dockerfile2.glob: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | COPY Dockerfile* / 3 | -------------------------------------------------------------------------------- /tests/bud/from-multiple-files/Dockerfile2.nofrom: -------------------------------------------------------------------------------- 1 | COPY Dockerfile2.nofrom / 2 | -------------------------------------------------------------------------------- /tests/bud/from-multiple-files/Dockerfile2.withfrom: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | COPY Dockerfile2.withfrom / 3 | -------------------------------------------------------------------------------- /tests/bud/from-scratch/Containerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | -------------------------------------------------------------------------------- /tests/bud/from-scratch/Containerfile2: -------------------------------------------------------------------------------- 1 | 2 | FROM scratch 3 | USER 1001 4 | 5 | -------------------------------------------------------------------------------- /tests/bud/from-scratch/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | -------------------------------------------------------------------------------- /tests/bud/group/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/group/Containerfile -------------------------------------------------------------------------------- /tests/bud/hardlink/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/hardlink/Dockerfile -------------------------------------------------------------------------------- /tests/bud/healthcheck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/healthcheck/Dockerfile -------------------------------------------------------------------------------- /tests/bud/heredoc-ignore/.containerignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /tests/bud/heredoc/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/heredoc/Containerfile -------------------------------------------------------------------------------- /tests/bud/http-context/context.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/http-context/context.tar -------------------------------------------------------------------------------- /tests/bud/inline-network/Dockerfile1: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN --network=host readlink /proc/self/ns/net 3 | -------------------------------------------------------------------------------- /tests/bud/inline-network/Dockerfile2: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN --network=none wget google.com 3 | -------------------------------------------------------------------------------- /tests/bud/inline-network/Dockerfile3: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN --network=fake wget google.com 3 | 4 | -------------------------------------------------------------------------------- /tests/bud/inline-network/Dockerfile4: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN --network=default readlink /proc/self/ns/net 3 | -------------------------------------------------------------------------------- /tests/bud/layers-squash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/layers-squash/Dockerfile -------------------------------------------------------------------------------- /tests/bud/layers-squash/artifact: -------------------------------------------------------------------------------- 1 | Aaa 2 | -------------------------------------------------------------------------------- /tests/bud/leading-args/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/leading-args/Dockerfile -------------------------------------------------------------------------------- /tests/bud/long-sleep/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/long-sleep/Dockerfile -------------------------------------------------------------------------------- /tests/bud/maintainer/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | MAINTAINER kilroy 3 | -------------------------------------------------------------------------------- /tests/bud/masks/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/masks/Containerfile -------------------------------------------------------------------------------- /tests/bud/masks/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/masks/test.sh -------------------------------------------------------------------------------- /tests/bud/mount/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN mount 3 | -------------------------------------------------------------------------------- /tests/bud/multiarch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/multiarch/Dockerfile -------------------------------------------------------------------------------- /tests/bud/namespaces/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/namespaces/Containerfile -------------------------------------------------------------------------------- /tests/bud/network/Containerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN ip addr 3 | -------------------------------------------------------------------------------- /tests/bud/no-change/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | -------------------------------------------------------------------------------- /tests/bud/no-history/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/no-history/Dockerfile -------------------------------------------------------------------------------- /tests/bud/no-hostname/Containerfile: -------------------------------------------------------------------------------- 1 | from alpine 2 | run cat /etc/hostname 3 | 4 | -------------------------------------------------------------------------------- /tests/bud/non-directory-in-path/non-directory: -------------------------------------------------------------------------------- 1 | A dummy file that is not a directory. 2 | -------------------------------------------------------------------------------- /tests/bud/onbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/onbuild/Dockerfile -------------------------------------------------------------------------------- /tests/bud/onbuild/Dockerfile1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/onbuild/Dockerfile1 -------------------------------------------------------------------------------- /tests/bud/onbuild/Dockerfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/onbuild/Dockerfile2 -------------------------------------------------------------------------------- /tests/bud/only-base/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/only-base/Containerfile -------------------------------------------------------------------------------- /tests/bud/preprocess/Decomposed.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/preprocess/Decomposed.in -------------------------------------------------------------------------------- /tests/bud/preprocess/Error.in: -------------------------------------------------------------------------------- 1 | FROM alpine:latest 2 | 3 | #include "common" 4 | 5 | #error 6 | -------------------------------------------------------------------------------- /tests/bud/preprocess/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/preprocess/common -------------------------------------------------------------------------------- /tests/bud/preprocess/install-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/preprocess/install-base -------------------------------------------------------------------------------- /tests/bud/pull/Containerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | -------------------------------------------------------------------------------- /tests/bud/recurse/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/recurse/Dockerfile -------------------------------------------------------------------------------- /tests/bud/run-privd/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN apk add nginx 3 | -------------------------------------------------------------------------------- /tests/bud/run-scenarios/Dockerfile.cmd-empty-run: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | CMD [ "pwd" ] 3 | RUN 4 | -------------------------------------------------------------------------------- /tests/bud/run-scenarios/Dockerfile.cmd-run: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | CMD [ "/invalid/cmd" ] 3 | RUN echo "unique.test.string" 4 | -------------------------------------------------------------------------------- /tests/bud/run-scenarios/Dockerfile.entrypoint-empty-run: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | ENTRYPOINT [ "pwd" ] 3 | RUN 4 | -------------------------------------------------------------------------------- /tests/bud/run-scenarios/Dockerfile.noop-flags: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | -------------------------------------------------------------------------------- /tests/bud/secret-env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/secret-env/Dockerfile -------------------------------------------------------------------------------- /tests/bud/secret-relative/secret1.txt: -------------------------------------------------------------------------------- 1 | secret:foo 2 | -------------------------------------------------------------------------------- /tests/bud/secret-relative/secret2.txt: -------------------------------------------------------------------------------- 1 | secret:bar 2 | -------------------------------------------------------------------------------- /tests/bud/shell/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | SHELL [ "/bin/sh", "-c" ] 3 | 4 | -------------------------------------------------------------------------------- /tests/bud/shell/Dockerfile.build-shell-default: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN echo "SHELL=$0" 3 | -------------------------------------------------------------------------------- /tests/bud/stdio/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/stdio/Dockerfile -------------------------------------------------------------------------------- /tests/bud/symlink/Containerfile.add-tar-gz-with-link: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | WORKDIR / 3 | ADD tarball_latest.tar.gz /tmp/ 4 | -------------------------------------------------------------------------------- /tests/bud/symlink/Containerfile.add-tar-with-link: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | WORKDIR / 3 | ADD tarball_latest.tar /tmp/ 4 | -------------------------------------------------------------------------------- /tests/bud/symlink/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/symlink/Dockerfile -------------------------------------------------------------------------------- /tests/bud/symlink/tarball.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/symlink/tarball.tar -------------------------------------------------------------------------------- /tests/bud/symlink/tarball.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/symlink/tarball.tar.gz -------------------------------------------------------------------------------- /tests/bud/symlink/tarball_latest.tar: -------------------------------------------------------------------------------- 1 | tarball.tar -------------------------------------------------------------------------------- /tests/bud/symlink/tarball_latest.tar.gz: -------------------------------------------------------------------------------- 1 | tarball.tar.gz -------------------------------------------------------------------------------- /tests/bud/target/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/target/Dockerfile -------------------------------------------------------------------------------- /tests/bud/targetarch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/targetarch/Dockerfile -------------------------------------------------------------------------------- /tests/bud/terminal/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | RUN ! tty 3 | -------------------------------------------------------------------------------- /tests/bud/unrecognized/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/unrecognized/Dockerfile -------------------------------------------------------------------------------- /tests/bud/use-args/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/use-args/Containerfile -------------------------------------------------------------------------------- /tests/bud/use-layers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/use-layers/Dockerfile -------------------------------------------------------------------------------- /tests/bud/use-layers/Dockerfile.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/use-layers/Dockerfile.2 -------------------------------------------------------------------------------- /tests/bud/use-layers/Dockerfile.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/use-layers/Dockerfile.3 -------------------------------------------------------------------------------- /tests/bud/use-layers/Dockerfile.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/use-layers/Dockerfile.4 -------------------------------------------------------------------------------- /tests/bud/use-layers/Dockerfile.5: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | RUN touch /home/blah -------------------------------------------------------------------------------- /tests/bud/use-layers/Dockerfile.6: -------------------------------------------------------------------------------- 1 | FROM alpine -------------------------------------------------------------------------------- /tests/bud/use-layers/Dockerfile.7: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | COPY . world/ 3 | -------------------------------------------------------------------------------- /tests/bud/use-layers/Dockerfile.dangling-symlink: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | COPY blah /tmp/ 3 | -------------------------------------------------------------------------------- /tests/bud/verify-cleanup/hey: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/bud/verify-cleanup/secret1.txt: -------------------------------------------------------------------------------- 1 | secrettext 2 | -------------------------------------------------------------------------------- /tests/bud/volume-perms/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/volume-perms/Dockerfile -------------------------------------------------------------------------------- /tests/bud/with-arg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/with-arg/Dockerfile -------------------------------------------------------------------------------- /tests/bud/with-arg/Dockerfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/with-arg/Dockerfile2 -------------------------------------------------------------------------------- /tests/bud/workdir-user/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud/workdir-user/Dockerfile -------------------------------------------------------------------------------- /tests/bud_overlay_leaks.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/bud_overlay_leaks.bats -------------------------------------------------------------------------------- /tests/byid.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/byid.bats -------------------------------------------------------------------------------- /tests/cdi.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/cdi.bats -------------------------------------------------------------------------------- /tests/chroot.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/chroot.bats -------------------------------------------------------------------------------- /tests/commit.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/commit.bats -------------------------------------------------------------------------------- /tests/config.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/config.bats -------------------------------------------------------------------------------- /tests/conformance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/conformance/README.md -------------------------------------------------------------------------------- /tests/conformance/testdata/Dockerfile.exposedefault: -------------------------------------------------------------------------------- 1 | FROM mirror.gcr.io/busybox 2 | EXPOSE 3469 -------------------------------------------------------------------------------- /tests/conformance/testdata/Dockerfile.shell: -------------------------------------------------------------------------------- 1 | FROM quay.io/libpod/centos:7 2 | SHELL ["/bin/bash", "-xc"] 3 | RUN env -------------------------------------------------------------------------------- /tests/conformance/testdata/add/archive/Dockerfile.1: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD . . 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/add/archive/Dockerfile.2: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD sub/ / 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/add/archive/Dockerfile.3: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD sub/subdirectory.tar.gz / 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/add/archive/Dockerfile.4: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD / / 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/add/parent-symlink/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD foobar.tar /testsubdir 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/builtins/otherfile.txt: -------------------------------------------------------------------------------- 1 | other 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/builtins/sourcefile.txt: -------------------------------------------------------------------------------- 1 | source 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-escape-glob/app/[xyz]/[abc]/file.txt: -------------------------------------------------------------------------------- 1 | also a file 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-escape-glob/app/[xyz]/file.txt: -------------------------------------------------------------------------------- 1 | a file 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-escape-glob/app/nope/file.txt: -------------------------------------------------------------------------------- 1 | but not 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-escape-glob/app/strauv/file.txt: -------------------------------------------------------------------------------- 1 | not this one 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-parents/x/a.txt: -------------------------------------------------------------------------------- 1 | A-FILE 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-parents/x/y/a.txt: -------------------------------------------------------------------------------- 1 | A-FILE 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-parents/x/y/b.txt: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-parents/x/z/a.txt: -------------------------------------------------------------------------------- 1 | A-FILE 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-parents/x/z/b.txt: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-parents/y/a.txt: -------------------------------------------------------------------------------- 1 | A-FILE 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy-parents/y/b.txt: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copy/script: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | exit 0 -------------------------------------------------------------------------------- /tests/conformance/testdata/copyblahblub/firstdir/seconddir/dir-a/file-a: -------------------------------------------------------------------------------- 1 | file-a 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyblahblub/firstdir/seconddir/dir-b/file-b: -------------------------------------------------------------------------------- 1 | file-b 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copychown/script: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exit 0 -------------------------------------------------------------------------------- /tests/conformance/testdata/copychown/script2: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exit 1 -------------------------------------------------------------------------------- /tests/conformance/testdata/copydir/dir/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyempty/.script: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | : -------------------------------------------------------------------------------- /tests/conformance/testdata/copyempty/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/libpod/centos:7 2 | COPY "" /usr/local/tmp/ 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyempty/script1: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exit 0 -------------------------------------------------------------------------------- /tests/conformance/testdata/copyempty/script2: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exit 1 -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/Beach.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/a/sub/subsub/protopatriarchal.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/a/sub/subsub/undestructible.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/b/.sub/gade.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/b/.sub/parcae.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/b/heliacally.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/b/overgoing.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/b/sub/ileosigmoidostomy.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/b/sub/overdilation.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/c/sub/disadvise.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/c/sub/subsub/subsubsub/fiddlecome.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/c/sub/subsub/subsubsub/unweariableness.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/c/sub/travel-sick.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/d/.sub/restocks.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/d/.sub/unblazoned.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/d/sub/alkalinity.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/d/sub/glandules.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/e/.sub/Tytonidae.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/e/.sub/vice-guilty.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/e/Towroy.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/e/sub/subsub/near-blindness.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/e/sub/subsub/paymaster-generalship.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/e/subjectivities.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/f/.sub/bilobate.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/f/.sub/fine-headed.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/f/Etnean.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/f/Sheya.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/f/sub/Vernaccia.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/f/sub/inaccordance.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/f/sub/subsub/subsubsub/ankylosing.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/f/sub/subsub/subsubsub/ocean-born.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/g/sub/huerta.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/g/sub/smopple.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/g/triple-throw.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/g/unexciting.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/h/.sub/Ellston.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/h/.sub/mine-run.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/h/sub/chromaticness.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/h/sub/noninhabitancy.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/i/.sub/Auer.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/i/.sub/hexachlorocyclohexane.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/i/sub/subsub/Minnnie.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/i/sub/subsub/papsquidder.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/i/sub/subsub/subsubsub/Croghan.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/i/sub/subsub/subsubsub/stacc..txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/j/sub/Hamon.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/j/sub/subsub/subsubsub/anapaestic.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/j/sub/subsub/subsubsub/castlelike.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/j/sub/topsy-turvydom.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/k/coembody.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/k/unvoweled.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/l/.sub/galliots.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/l/.sub/minning.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/l/sub/subsub/misidentification.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/l/sub/subsub/palling.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/l/torpifying.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/l/unmarring.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/m/sub/cache.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/m/sub/ribbon-marked.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyglob/pasteups.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copyrename/file1: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | exit 0 -------------------------------------------------------------------------------- /tests/conformance/testdata/copysymlink/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/libpod/centos:7 2 | COPY file-link.tar.gz / 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/copysymlink/file-link.tar.gz: -------------------------------------------------------------------------------- 1 | file.tar.gz -------------------------------------------------------------------------------- /tests/conformance/testdata/copysymlink/file.tar.gz: -------------------------------------------------------------------------------- 1 | hello, world 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dir/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dir/subdir/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/nothing-dot/.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/nothing-slash/.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subdir-file/.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | !folder1/file1 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subdir-file/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD folder1 /f1 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subdir-file/folder1/file1: -------------------------------------------------------------------------------- 1 | Hi, I'm file 1. 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subdir-file/folder1/file2: -------------------------------------------------------------------------------- 1 | Hi, I'm file 2. 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subdir-nofile/.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | !folder1/file 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subdir-nofile/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD folder1 /f1 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subdir-nofile/folder1/file1: -------------------------------------------------------------------------------- 1 | Hi, I'm file 1. 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subdir-nofile/folder1/file2: -------------------------------------------------------------------------------- 1 | Hi, I'm file 2. 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subsubdir-file/folder/subfolder/file: -------------------------------------------------------------------------------- 1 | I'm a file. 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subsubdir-nofile/folder/file: -------------------------------------------------------------------------------- 1 | I'm a file. 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/allowlist/subsubdir-nosubdir/folder/file: -------------------------------------------------------------------------------- 1 | Hi, I'm a file 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/empty/.dockerignore: -------------------------------------------------------------------------------- 1 | # Functionally empty. 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/empty/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . subdir/ 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/empty/test1.txt: -------------------------------------------------------------------------------- 1 | test1 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-skip/.dockerignore: -------------------------------------------------------------------------------- 1 | volume/ 2 | !**/oneline.txt 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-skip/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mirror.gcr.io/alpine 2 | COPY ./ ./ 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-skip/volume/data/oneline.txt: -------------------------------------------------------------------------------- 1 | one line of text 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-weirdness-1/.dockerignore: -------------------------------------------------------------------------------- 1 | subdir 2 | !*/sub1* 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-weirdness-1/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mirror.gcr.io/alpine 2 | COPY ./ /newdir 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-weirdness-1/subdir/sub1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-weirdness-1/subdir/sub2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-weirdness-1/subdir/sub3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-weirdness-2/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mirror.gcr.io/alpine 2 | COPY ./ /newdir 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-weirdness-2/subdir/sub1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-weirdness-2/subdir/sub2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/exceptions-weirdness-2/subdir/sub3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration1/subdir/sub1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration1/subdir/sub2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration1/test1.txt: -------------------------------------------------------------------------------- 1 | test1 failed -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration1/test2.txt: -------------------------------------------------------------------------------- 1 | test2 failed -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration2/.dockerignore: -------------------------------------------------------------------------------- 1 | unmatched 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration2/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration2/subdir/sub1.txt: -------------------------------------------------------------------------------- 1 | sub1 -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration2/subdir/subsubdir/subsub1.txt: -------------------------------------------------------------------------------- 1 | subsub1 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/BUILD.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/COPYRIGHT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/README-secret.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/src/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/src/cmd/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/src/cmd/main.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/src/etc/foo.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/src/etc/foo.conf.d/dropin.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/src/lib/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/src/lib/framework.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/test1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/test2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/integration3/test3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/minimal_test/stuff/huge/usr/bin/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/minimal_test/stuff/huge/usr/bin/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/.dotfile-a.txt: -------------------------------------------------------------------------------- 1 | dotfile-a 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/file-a.txt: -------------------------------------------------------------------------------- 1 | file-a 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/file-b.txt: -------------------------------------------------------------------------------- 1 | file-b 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/file-c.txt: -------------------------------------------------------------------------------- 1 | file-c 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-b/.dotfile-b.txt: -------------------------------------------------------------------------------- 1 | dotfile-b 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-c/file-b.txt: -------------------------------------------------------------------------------- 1 | ../file-a.txt -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-c/file-c.txt: -------------------------------------------------------------------------------- 1 | ../file-b.txt -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-e/file-a.txt: -------------------------------------------------------------------------------- 1 | ../file-a.txt -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-e/file-b.txt: -------------------------------------------------------------------------------- 1 | ../file-b.txt -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-e/file-n.txt: -------------------------------------------------------------------------------- 1 | file-n 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-e/subdir-f/file-a.txt: -------------------------------------------------------------------------------- 1 | ../../file-a.txt -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-e/subdir-f/file-n.txt: -------------------------------------------------------------------------------- 1 | ../file-n.txt -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-e/subdir-f/file-o.txt: -------------------------------------------------------------------------------- 1 | file-o 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/dockerignore/populated/subdir-e/subdir-f/subdir-g/subdir-b: -------------------------------------------------------------------------------- 1 | ../../../subdir-b -------------------------------------------------------------------------------- /tests/conformance/testdata/heredoc/file: -------------------------------------------------------------------------------- 1 | somefile 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/mount/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mirror.gcr.io/busybox 2 | RUN stat -c "%s %n %a %F %g %u" /tmp/test/* 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/mount/file: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /tests/conformance/testdata/mount/file2: -------------------------------------------------------------------------------- 1 | file2 -------------------------------------------------------------------------------- /tests/conformance/testdata/overlapdirwithoutslash/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mirror.gcr.io/busybox 2 | COPY existing . -------------------------------------------------------------------------------- /tests/conformance/testdata/overlapdirwithoutslash/existing/etc/file-in-existing-dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/overlapdirwithslash/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mirror.gcr.io/busybox 2 | COPY existing/ . -------------------------------------------------------------------------------- /tests/conformance/testdata/overlapdirwithslash/existing/etc/file-in-existing-dir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/replace/symlink-with-directory/tree1/directory/file-in-directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/replace/symlink-with-directory/tree1/maybe-directory: -------------------------------------------------------------------------------- 1 | directory -------------------------------------------------------------------------------- /tests/conformance/testdata/replace/symlink-with-directory/tree2/maybe-directory/file-in-maybe-directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/subdir/subdir/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | COPY . . 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/tar-g/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | ADD content.tar.gz / 3 | -------------------------------------------------------------------------------- /tests/conformance/testdata/tar-g/content.txt: -------------------------------------------------------------------------------- 1 | Look at me, I'm content! 2 | -------------------------------------------------------------------------------- /tests/conformance/testdata/transientmount/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/transientmount/subdir/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conformance/testdata/volume/file: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /tests/conformance/testdata/volume/file2: -------------------------------------------------------------------------------- 1 | file2 -------------------------------------------------------------------------------- /tests/conformance/testdata/volumerun/file: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /tests/conformance/testdata/volumerun/file2: -------------------------------------------------------------------------------- 1 | file2 -------------------------------------------------------------------------------- /tests/conformance/testdata/volumerun/file4: -------------------------------------------------------------------------------- 1 | file4 -------------------------------------------------------------------------------- /tests/conformance/testdata/wildcard/dir2/file.a: -------------------------------------------------------------------------------- 1 | file.a -------------------------------------------------------------------------------- /tests/conformance/testdata/wildcard/dir2/file.b: -------------------------------------------------------------------------------- 1 | file.b -------------------------------------------------------------------------------- /tests/conformance/testdata/wildcard/dir2/file.c: -------------------------------------------------------------------------------- 1 | file.c -------------------------------------------------------------------------------- /tests/conformance/testdata/wildcard/dir2/file2.b: -------------------------------------------------------------------------------- 1 | file2.b -------------------------------------------------------------------------------- /tests/containers.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/containers.bats -------------------------------------------------------------------------------- /tests/containers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/containers.conf -------------------------------------------------------------------------------- /tests/containers_conf.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/containers_conf.bats -------------------------------------------------------------------------------- /tests/copy.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/copy.bats -------------------------------------------------------------------------------- /tests/copy/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/copy/copy.go -------------------------------------------------------------------------------- /tests/crash/crash_notunix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/crash/crash_notunix.go -------------------------------------------------------------------------------- /tests/crash/crash_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/crash/crash_unix.go -------------------------------------------------------------------------------- /tests/deny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/deny.json -------------------------------------------------------------------------------- /tests/digest.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/digest.bats -------------------------------------------------------------------------------- /tests/digest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/digest/README.md -------------------------------------------------------------------------------- /tests/digest/make-v2s1: -------------------------------------------------------------------------------- 1 | make-v2sN -------------------------------------------------------------------------------- /tests/digest/make-v2s1-with-dups: -------------------------------------------------------------------------------- 1 | make-v2sN -------------------------------------------------------------------------------- /tests/digest/make-v2s2: -------------------------------------------------------------------------------- 1 | make-v2sN -------------------------------------------------------------------------------- /tests/digest/make-v2sN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/digest/make-v2sN -------------------------------------------------------------------------------- /tests/docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/docker.json -------------------------------------------------------------------------------- /tests/dumpspec/dumpspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/dumpspec/dumpspec.go -------------------------------------------------------------------------------- /tests/dumpspec/dumpspec_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/dumpspec/dumpspec_linux.go -------------------------------------------------------------------------------- /tests/dumpspec/dumpspec_notunix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/dumpspec/dumpspec_notunix.go -------------------------------------------------------------------------------- /tests/dumpspec/dumpspec_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/dumpspec/dumpspec_unix.go -------------------------------------------------------------------------------- /tests/dumpspec/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/dumpspec/notes.md -------------------------------------------------------------------------------- /tests/formats.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/formats.bats -------------------------------------------------------------------------------- /tests/from.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/from.bats -------------------------------------------------------------------------------- /tests/git-daemon/repo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/git-daemon/repo.tar.gz -------------------------------------------------------------------------------- /tests/help.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/help.bats -------------------------------------------------------------------------------- /tests/helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/helpers.bash -------------------------------------------------------------------------------- /tests/helpers.bash.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/helpers.bash.t -------------------------------------------------------------------------------- /tests/history.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/history.bats -------------------------------------------------------------------------------- /tests/images.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/images.bats -------------------------------------------------------------------------------- /tests/imgtype/imgtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/imgtype/imgtype.go -------------------------------------------------------------------------------- /tests/inet/inet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/inet/inet.go -------------------------------------------------------------------------------- /tests/info.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/info.bats -------------------------------------------------------------------------------- /tests/inspect.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/inspect.bats -------------------------------------------------------------------------------- /tests/lists.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/lists.bats -------------------------------------------------------------------------------- /tests/loglevel.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/loglevel.bats -------------------------------------------------------------------------------- /tests/mkcw.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/mkcw.bats -------------------------------------------------------------------------------- /tests/mount.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/mount.bats -------------------------------------------------------------------------------- /tests/namespaces.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/namespaces.bats -------------------------------------------------------------------------------- /tests/overlay.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/overlay.bats -------------------------------------------------------------------------------- /tests/passwd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/passwd/README.md -------------------------------------------------------------------------------- /tests/passwd/passwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/passwd/passwd.go -------------------------------------------------------------------------------- /tests/platforms.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/platforms.bats -------------------------------------------------------------------------------- /tests/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/policy.json -------------------------------------------------------------------------------- /tests/pull.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/pull.bats -------------------------------------------------------------------------------- /tests/push.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/push.bats -------------------------------------------------------------------------------- /tests/registries-cached.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/registries-cached.conf -------------------------------------------------------------------------------- /tests/registries.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/registries.bats -------------------------------------------------------------------------------- /tests/registries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/registries.conf -------------------------------------------------------------------------------- /tests/registries.conf.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/registries.conf.block -------------------------------------------------------------------------------- /tests/registries.conf.hub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/registries.conf.hub -------------------------------------------------------------------------------- /tests/rename.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/rename.bats -------------------------------------------------------------------------------- /tests/rm.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/rm.bats -------------------------------------------------------------------------------- /tests/rmi.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/rmi.bats -------------------------------------------------------------------------------- /tests/run.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/run.bats -------------------------------------------------------------------------------- /tests/sbom.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/sbom.bats -------------------------------------------------------------------------------- /tests/selinux.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/selinux.bats -------------------------------------------------------------------------------- /tests/serve/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/serve/serve.go -------------------------------------------------------------------------------- /tests/sign.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/sign.bats -------------------------------------------------------------------------------- /tests/source.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/source.bats -------------------------------------------------------------------------------- /tests/squash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/squash.bats -------------------------------------------------------------------------------- /tests/ssh.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/ssh.bats -------------------------------------------------------------------------------- /tests/subscriptions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/subscriptions.bats -------------------------------------------------------------------------------- /tests/tag.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tag.bats -------------------------------------------------------------------------------- /tests/test_buildah_baseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/test_buildah_baseline.sh -------------------------------------------------------------------------------- /tests/test_buildah_build_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/test_buildah_build_rpm.sh -------------------------------------------------------------------------------- /tests/test_buildah_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/test_buildah_rpm.sh -------------------------------------------------------------------------------- /tests/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/test_runner.sh -------------------------------------------------------------------------------- /tests/testreport/testreport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/testreport/testreport.go -------------------------------------------------------------------------------- /tests/testreport/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/testreport/types/types.go -------------------------------------------------------------------------------- /tests/tmt/system.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tmt/system.fmf -------------------------------------------------------------------------------- /tests/tmt/system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tmt/system.sh -------------------------------------------------------------------------------- /tests/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tools/Makefile -------------------------------------------------------------------------------- /tests/tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tools/go.mod -------------------------------------------------------------------------------- /tests/tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tools/go.sum -------------------------------------------------------------------------------- /tests/tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tools/tools.go -------------------------------------------------------------------------------- /tests/tools/vendor/github.com/cpuguy83/go-md2man/v2/.gitignore: -------------------------------------------------------------------------------- 1 | go-md2man 2 | bin 3 | -------------------------------------------------------------------------------- /tests/tools/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tools/vendor/modules.txt -------------------------------------------------------------------------------- /tests/tutorial.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tutorial.bats -------------------------------------------------------------------------------- /tests/tutorial/tutorial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/tutorial/tutorial.go -------------------------------------------------------------------------------- /tests/umount.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/umount.bats -------------------------------------------------------------------------------- /tests/validate/whitespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/validate/whitespace.sh -------------------------------------------------------------------------------- /tests/wait/wait_notunix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/wait/wait_notunix.go -------------------------------------------------------------------------------- /tests/wait/wait_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/tests/wait/wait_unix.go -------------------------------------------------------------------------------- /troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/troubleshooting.md -------------------------------------------------------------------------------- /unmount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/unmount.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/util.go -------------------------------------------------------------------------------- /util/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/util/types.go -------------------------------------------------------------------------------- /util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/util/util.go -------------------------------------------------------------------------------- /util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/util/util_test.go -------------------------------------------------------------------------------- /util/util_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/util/util_unix.go -------------------------------------------------------------------------------- /util/util_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/util/util_unsupported.go -------------------------------------------------------------------------------- /util/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/util/util_windows.go -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/cyphar.com/go-pathrs/doc.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/dario.cat/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/dario.cat/mergo/README.md -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/dario.cat/mergo/doc.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/dario.cat/mergo/map.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/dario.cat/mergo/merge.go -------------------------------------------------------------------------------- /vendor/dario.cat/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/dario.cat/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/VividCortex/ewma/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .*.sw? 3 | /coverage.txt -------------------------------------------------------------------------------- /vendor/github.com/chzyer/readline/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* 2 | -------------------------------------------------------------------------------- /vendor/github.com/clipperhouse/stringish/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/containerd/platforms/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf -------------------------------------------------------------------------------- /vendor/github.com/containerd/typeurl/v2/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/containers/ocicrypt/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/VERSION: -------------------------------------------------------------------------------- 1 | 0.6.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/distribution/reference/.gitignore: -------------------------------------------------------------------------------- 1 | # Cover profiles 2 | *.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/felixge/httpsnoop/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/copier/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | ttt/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/manifoldco/promptui/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | all-cover.txt 3 | bin/ 4 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/pkcs11/softhsm.conf: -------------------------------------------------------------------------------- 1 | 0:hsm.db 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/go-archive/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/moby/moby/api/types/plugin/.gitignore: -------------------------------------------------------------------------------- 1 | testdata/rapid/** 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/imagebuilder/.gitignore: -------------------------------------------------------------------------------- 1 | /imagebuilder 2 | -------------------------------------------------------------------------------- /vendor/github.com/seccomp/libseccomp-golang/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | *.orig 4 | tags 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/stefanberger/go-pkcs11uri/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | pkcs11uri 3 | -------------------------------------------------------------------------------- /vendor/github.com/vishvananda/netlink/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/.go-version: -------------------------------------------------------------------------------- 1 | 1.23.12 2 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/go.etcd.io/bbolt/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/go.etcd.io/bbolt/Makefile -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/go.etcd.io/bbolt/OWNERS -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/go.etcd.io/bbolt/db.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/go.etcd.io/bbolt/doc.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/go.etcd.io/bbolt/node.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/go.etcd.io/bbolt/tx.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/requirements.txt: -------------------------------------------------------------------------------- 1 | codespell==2.4.1 2 | -------------------------------------------------------------------------------- /vendor/go.podman.io/storage/.dockerignore: -------------------------------------------------------------------------------- 1 | bundles 2 | .gopath 3 | vendor/pkg 4 | -------------------------------------------------------------------------------- /vendor/go.podman.io/storage/VERSION: -------------------------------------------------------------------------------- 1 | 1.62.0-dev 2 | -------------------------------------------------------------------------------- /vendor/go.podman.io/storage/drivers/btrfs/dummy_unsupported.go: -------------------------------------------------------------------------------- 1 | //go:build !linux || !cgo 2 | 3 | package btrfs 4 | -------------------------------------------------------------------------------- /vendor/go.podman.io/storage/drivers/zfs/zfs_unsupported.go: -------------------------------------------------------------------------------- 1 | //go:build !linux && !freebsd 2 | 3 | package zfs 4 | -------------------------------------------------------------------------------- /vendor/go.podman.io/storage/pkg/loopback/loopback_unsupported.go: -------------------------------------------------------------------------------- 1 | package loopback 2 | -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containers/buildah/HEAD/vendor/sigs.k8s.io/yaml/yaml.go --------------------------------------------------------------------------------