Error creating OCI container

nullable

New Member
Nov 20, 2025
6
0
1
Hey!

Got this funny response when creating an oci container in Proxmox 9.1.1

"Formatting '/mnt/pve/Store4/images/101/vm-101-disk-0.raw', fmt=raw size=8589934592 preallocation=off
Creating filesystem with 2097152 4k blocks and 524288 inodes
Filesystem UUID: be563e9d-1bfb-49c0-b917-82be562b609a
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632
Detected OCI archive
TASK ERROR: unable to create CT 101 - Error while extracting OCI image: Unknown layer digest sha256:256f393e029fa2063d8c93720da36a74a032bed3355a2bc3e313ad12f8bde9d1 found in rootfs.diff_ids: Unknown layer digest sha256:256f393e029fa2063d8c93720da36a74a032bed3355a2bc3e313ad12f8bde9d1 found in rootfs.diff_ids
"

The image is hosted on docker hub and loads just fine in both docker & podman.
Proxmox downloaded and extracted to a tar file, but I can't start it.

[Update]
FYI: I copied the tar to another box with podman installed, loaded and started the container there without any issues.

Any ideas?
 
Last edited:
that means the OCI image is either invalid or uses some part of the OCI image format spec that we don't support yet, without more details about its contents we probably can't help you..
 
Hi nullable,
you can probably try to copy the image manually with skopeo.
Which should be used under the hood.

Code:
mkdir ./skop
skopeo copy docker://docker.io/rancher/cowsay:latest dir:./skop

And check if it provides you more verbosity.

BR, Lucas

Edit: It actually does not look like a error during the pull process
 
Last edited:
Hi nullable,
you can probably try to copy the image manually with skopeo.
Which should be used under the hood.

Code:
mkdir ./skop
skopeo copy docker://docker.io/rancher/cowsay:latest dir:./skop

And check if it provides you more verbosity.

BR, Lucas

Edit: It actually does not look like a error during the pull process
Thanks very much for the suggestion. I ran it successfully, the image was downloaded and extracted with no issues.
Much appreciated, thanks.
 
found the issue, thanks!