Open onderson opened 2 years ago
Which preset are you using? It seems you are running the OpenShift preset and using podman-env
, right? As the info says:
distribution: '"rhcos"'
Note: Please make sure to provide the/'as much' information as asked in the template
ls -l /Users/burgekaraer/.local/share/containers/storage
Looks like you are using this on macOS. On macOS, podman
really is podman-remote
, and the actual work (image storage, ...) is done by the VM crc started. This means ls -l /var/home/core/.local/share/containers/storage ls: /var/home/core/.local/share/containers/storage: No such file or directory
should be run inside the VM, I don't know where you run it.
Which preset are you using? It seems you are running the OpenShift preset and using
podman-env
, right? As the info says:distribution: '"rhcos"'
Note: Please make sure to provide the/'as much' information as asked in the template
my config is as mentioned here
that means i should do skopeo from the vm? even though i am not sure how to connect to VM or if there is a way to copy from vm by running skopeo from host (my local) to remote. in theory there should be since skopeo is able to copy between two regs, i just dont know what to specify for the vm which is serving images..
that means i should do skopeo from the vm?
You haven't confirmed what you tried doing exactly, running skopeo from the VM would be one way yes. But we expose unix sockets on your host which can be used to talk to the podman instance using docker/podman http API, hopefully skopeo can use these directly?
i have built an image and wanted to copy that to public registry which was quay.io. it is experimental effort though but would be good to achieve.
Can you use podman push
for this?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hi, i have a
podman info
output as below.once i check Graphroot path i dont see any images in my localstorage and strangely the output is below.
ls -l /var/home/core/.local/share/containers/storage ls: /var/home/core/.local/share/containers/storage: No such file or directory
and for a locally build image, if i try to use skopeo it oddly fails.
this is what i have got.
ls -l /Users/burgekaraer/.local/share/containers/storage total 0 drwx------ 2 burgekaraer staff 64 11 Jun 03:34 mounts -rw-r--r-- 1 burgekaraer staff 0 11 Jun 03:34 storage.lock drwx------ 2 burgekaraer staff 64 11 Jun 03:34 tmp -rw-r--r-- 1 burgekaraer staff 0 11 Jun 03:34 userns.lock drwx------ 2 burgekaraer staff 64 11 Jun 03:34 vfs drwx------ 3 burgekaraer staff 96 11 Jun 03:49 vfs-containers drwx------ 3 burgekaraer staff 96 11 Jun 04:11 vfs-images
if i run
sudo chown root:wheel /Users/burgekaraer/.local/share/containers/storage/vfs
then skopeo is giving a different error.
skopeo copy containers-storage:localhost/sample:v1 docker://quay.io/osezgin/sample:latest FATA[0000] initializing source containers-storage:[vfs@/Users/burgekaraer/.local/share/containers/storage+/private/var/folders/k4/n90g79rd6vv0fl__ysg8_j280000gn/T/containers-user-501/containers]localhost/sample:v1: reference "[vfs@/Users/burgekaraer/.local/share/containers/storage+/private/var/folders/k4/n90g79rd6vv0fl__ysg8_j280000gn/T/containers-user-501/containers]localhost/sample:v1" does not resolve to an image ID: identifier is not an image
would anybody have any idea explanation etc to find out what's going on?
Another question is where podman is placing the built or downloaded images in local disk? How can i find that out?
Many thanks