Hacker News new | ask | show | jobs
by bongobingo1 1371 days ago
For others, you can adjust the format with `podman build --format=docker` (or set `BUILDAH_FORMAT=docker`) or possibly you can push it separately?

https://docs.podman.io/en/latest/markdown/podman-manifest-pu...

Wonder why they don't use OCI format.

1 comments

Yeah, I use Buildah for creating my images, so the environment variable or specifying commit --format docker would work. Before I did that I just re-pushed the image itself using the v2s2 format, so:

    # podman inspect quay.io/my/image:latest | jq ".[].ManifestType"
    "application/vnd.oci.image.manifest.v1+json"
    # podman push --format v2s2 quay.io/my/image:latest registry.fly.io/my-app:latest