You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the awesome podman collection, it makes it so easy to work with containers from ansible.
I have an issue at hand though:
I pull an image from public hub that I want to use, but it runs services as root.
I want to change it to run stuff as a certain user, so this is what I try to do:
pull hub-image
run container using hub-image
create user 'wildcat' in container
export container as c.tar
import c.tar as new-image
run new-container as user wildcat
My problem is between step 5. and 6., since when I use podman_import, the imported image does not have a property I could refer to in step 6. When I list images, the imported image does not have a REPOSITORY or TAG, and the image ID is not returned by podman_import, so I can't use that either.
$ podman images REPOSITORY TAG IMAGE ID CREATED SIZE <none> <none> f286a120753a About a minute ago 531 MB
Am I doing something wrong?
cheers,
Robert
The text was updated successfully, but these errors were encountered:
Hey,
Thanks for the awesome podman collection, it makes it so easy to work with containers from ansible.
I have an issue at hand though:
My problem is between step 5. and 6., since when I use podman_import, the imported image does not have a property I could refer to in step 6. When I list images, the imported image does not have a REPOSITORY or TAG, and the image ID is not returned by podman_import, so I can't use that either.
$ podman images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> f286a120753a About a minute ago 531 MB
Am I doing something wrong?
cheers,
Robert
The text was updated successfully, but these errors were encountered: