opencontainers / image-tools

OCI Image Tooling
https://opencontainers.org
Apache License 2.0
266 stars 83 forks source link

Docs: `skopeo copy` command needs a destination image tag #191

Closed david-drinn closed 6 years ago

david-drinn commented 6 years ago

The Example has you run:

skopeo copy docker://busybox oci:busybox-oci

However, this fails with:

Error initializing destination oci:busybox-oci:: cannot save image with empty image.ref.name

My skopeo version:


skopeo version 0.1.24-dev commit: 28d4e08a4bee85ad7c25106431df649c6f9e389b```
david-drinn commented 6 years ago

Looking at the test code for skopeo, it appears that the skopeo copy command requires a tag for the destination image.

This works:

skopeo copy docker://busybox oci:busybox-oci:latest

zhouhao3 commented 6 years ago

This has been modified in #195, so close it.