skopeo---github简单记录

原文链接: http://www.cnblogs.com/aguncn/p/10760474.html

新的redhat 8已默认不集成docker,而是使用podman了。

podman和skopeo和buildah,cri-o一起,组成了新一代的容器四大天王。

花时时间了解下,是值得的。

skopeo的github地址:

https://github.com/containers/skopeo

skopeo---github简单记录_第1张图片

skopeo三大功能:

1,查看仓库镜像信息

skopeo inspect docker://docker.io/fedora

2,拷贝镜像

skopeo copy docker://busybox:1-glibc atomic:myns/unsigned:streaming

3,删除镜像

skopeo delete docker://localhost:5000/imagename:latest

更多内容:

skopeo is a command line utility that performs various operations on container images and image repositories.

skopeo can work with OCI images as well as the original Docker v2 images.

Skopeo works with API V2 registries such as Docker registries, the Atomic registry, private registries, local directories and local OCI-layout directories. Skopeo does not require a daemon to be running to perform these operations which consist of:

  • Copying an image from and to various storage mechanisms. For example you can copy images from one registry to another, without requiring privilege.
  • Inspecting a remote image showing its properties including its layers, without requiring you to pull the image to the host.
  • Deleting an image from an image repository.
  • When required by the repository, skopeo can pass the appropriate credentials and certificates for authentication.

Skopeo operates on the following image and repository types:

  • containers-storage:docker-reference An image located in a local containers/storage image store. Location and image store specified in /etc/containers/storage.conf

  • dir:path An existing local directory path storing the manifest, layer tarballs and signatures as individual files. This is a non-standardized format, primarily useful for debugging or noninvasive container inspection.

  • docker://docker-reference An image in a registry implementing the "Docker Registry HTTP API V2". By default, uses the authorization state in $HOME/.docker/config.json, which is set e.g. using (docker login).

  • docker-archive:path[:docker-reference] An image is stored in the docker save formated file. docker-reference is only used when creating such a file, and it must not contain a digest.

  • docker-daemon:docker-reference An image docker-reference stored in the docker daemon internal storage. docker-reference must contain either a tag or a digest. Alternatively, when reading images, the format can also be docker-daemon:algo:digest (an image ID).

  • oci:path:tag An image tag in a directory compliant with "Open Container Image Layout Specification" at path.

  • ostree:image[@/absolute/repo/path] An image in local OSTree repository. /absolute/repo/path defaults to /ostree/repo.

 

转载于:https://www.cnblogs.com/aguncn/p/10760474.html

你可能感兴趣的:(skopeo---github简单记录)