Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

No, it is not impossible to perform a push operation to the local registry while using podman. Podman allows you to push images to any registry, including local ones. To push an image to a local registry using podman, you need to tag the image with the registry’s address and port number and then use the push command. For example, to push an image tagged as “myimage” to a local registry running on port 5000, you can use the following command:

podman tag myimage localhost:5000/myimage
podman push localhost:5000/myimage