Work with remote images registries - retrieving information, images, signing content
Go to file
Antonio Murdaca 2dbacbb786 show tag and taglist
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2016-01-20 17:43:49 +01:00
Godeps add Godeps 2016-01-20 17:24:13 +01:00
.gitignore initial commit 2016-01-17 18:28:53 +01:00
inspect_v1.go show tag and taglist 2016-01-20 17:43:49 +01:00
inspect_v2.go show tag and taglist 2016-01-20 17:43:49 +01:00
inspect.go show tag and taglist 2016-01-20 17:43:49 +01:00
LICENSE add LICENSE 2016-01-20 17:11:55 +01:00
main.go bootstrap list tags 2016-01-19 20:27:09 +01:00
Makefile initial commit 2016-01-17 18:28:53 +01:00
README.md add README.md 2016-01-20 17:21:09 +01:00
tags.go bootstrap list tags 2016-01-19 20:27:09 +01:00

skopeo

Please be aware skopeo is still work in progress

skopeo is a command line utility which is able to inspect an image from a remote Docker registry. By inspect I mean it just fetches the image's manifest and it is able to show you a docker inspect-like json output. This tool, in constrast to docker inspect, helps you gather useful information about an image before pulling it (and use disk space).

Example:

$ skopeo registry.access.redhat.com/rhel7 | jq '.Config.Labels'
{
  "Architecture": "x86_64",
  "Authoritative_Registry": "registry.access.redhat.com",
  "BZComponent": "rhel-server-docker",
  "Build_Host": "rcm-img04.build.eng.bos.redhat.com",
  "Name": "rhel7/rhel",
  "Release": "38",
  "Vendor": "Red Hat, Inc.",
  "Version": "7.2"
}

Building

$ git clone https://github.com/runcom/skopeo
$ make

Installing

$ sudo make install

License

MIT