2017-02-01 00:45:59 +00:00
|
|
|
[![GoDoc](https://godoc.org/github.com/containers/image?status.svg)](https://godoc.org/github.com/containers/image) [![Build Status](https://travis-ci.org/containers/image.svg?branch=master)](https://travis-ci.org/containers/image)
|
|
|
|
=
|
|
|
|
|
2017-03-13 16:33:17 +00:00
|
|
|
`image` is a set of Go libraries aimed at working in various way with
|
|
|
|
containers' images and container image registries.
|
2017-02-01 00:45:59 +00:00
|
|
|
|
2017-03-13 16:33:17 +00:00
|
|
|
The containers/image library allows application to pull and push images from
|
|
|
|
container image registries, like the upstream docker registry. It also
|
|
|
|
implements "simple image signing".
|
2017-02-01 00:45:59 +00:00
|
|
|
|
2017-03-13 16:33:17 +00:00
|
|
|
The containers/image library also allows you to inspect a repository on a
|
|
|
|
container registry without pulling down the image. This means it fetches the
|
|
|
|
repository's manifest and it is able to show you a `docker inspect`-like json
|
|
|
|
output about a whole repository or a tag. This library, in contrast to `docker
|
|
|
|
inspect`, helps you gather useful information about a repository or a tag
|
|
|
|
without requiring you to run `docker pull`.
|
2017-02-01 00:45:59 +00:00
|
|
|
|
2017-03-13 16:33:17 +00:00
|
|
|
The containers/image library also allows you to translate from one image format
|
|
|
|
to another, for example docker container images to OCI images. It also allows
|
|
|
|
you to copy container images between various registries, possibly converting
|
|
|
|
them as necessary, and to sign and verify images.
|
2017-02-01 00:45:59 +00:00
|
|
|
|
2017-03-13 16:33:17 +00:00
|
|
|
The [skopeo](https://github.com/projectatomic/skopeo) tool uses the
|
|
|
|
containers/image library and takes advantage of its many features.
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
Dependencies that this library prefers will not be found in the `vendor`
|
|
|
|
directory. This is so you can make well-informed decisions about which
|
|
|
|
libraries you should use with this package in your own projects.
|
|
|
|
|
|
|
|
What this project tests against dependencies-wise is located
|
|
|
|
[here](https://github.com/containers/image/blob/master/vendor.conf).
|
2017-02-01 00:45:59 +00:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
ASL 2.0
|
|
|
|
|
|
|
|
## Contact
|
|
|
|
|
|
|
|
- Mailing list: [containers-dev](https://groups.google.com/forum/?hl=en#!forum/containers-dev)
|
|
|
|
- IRC: #[container-projects](irc://irc.freenode.net:6667/#container-projects) on freenode.net
|