#container-image #api #streaming #github #interact #skopeo #com-containers-image

containers-image-proxy

Interact with the github.com/containers/image library via skopeo

16 releases

0.5.8 Jan 24, 2024
0.5.7 Sep 27, 2023
0.5.5 Aug 28, 2023
0.5.3 May 1, 2023
0.3.2 Nov 30, 2021

#339 in Images

Download history 342/week @ 2023-12-05 389/week @ 2023-12-12 249/week @ 2023-12-19 188/week @ 2023-12-26 437/week @ 2024-01-02 364/week @ 2024-01-09 418/week @ 2024-01-16 503/week @ 2024-01-23 585/week @ 2024-01-30 534/week @ 2024-02-06 328/week @ 2024-02-13 370/week @ 2024-02-20 441/week @ 2024-02-27 571/week @ 2024-03-05 691/week @ 2024-03-12 502/week @ 2024-03-19

2,363 downloads per month
Used in ostree-ext

MIT/Apache

29KB
464 lines

Rust bindings for accessing the Go containers/image stack

This crate contains a Rust API that forks /usr/bin/skopeo and talks to it via a custom API. You can use it to fetch container images in a streaming fashion.

At the time of this writing, you will need skopeo 1.6.0 or later.

Why?

First, assume one is operating on a codebase that isn't Go, but wants to interact with container images - we can't just include the Go containers/image library.

The primary intended use case of this is for things like ostree-containers where we're using container images to encapsulate host operating system updates, but we don't want to involve the containers/image storage layer.

What we do want from the containers/image library is support for things like signatures and offline mirroring. More on this below.

Forgetting things like ostree exist for a second - imagine that you wanted to encapsulate a set of Debian/RPM/etc packages inside a container image to ship for package-based operating systems. You could use this to stream out the layer containing those packages and extract them directly, rather than serializing everything to disk in the containers/storage disk location, only to copy it out again and delete the first.

Another theoretical use case could be something like krustlet, which fetches WebAssembly blobs inside containers. Here again, we don't want to involve containers/storage.

Desired containers/image features

There are e.g. Rust libraries like dkregistry-rs and oci-distribution and similar for other languages.

However, the containers/image Go library has a lot of additional infrastructure that will impose a maintenance burden to replicate:

  • Signatures (man containers-auth.json)
  • Mirroring/renaming (man containers-registries.conf)
  • Support for ~/.docker/config.json for authentication as well as /run

Status

API is subject to change.

Dependencies

~8–20MB
~264K SLoC