|
|
|
|
|
by mroche
1371 days ago
|
|
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
|
|