Hi community,
I’m playing with containers inside my vyos
I want to use my own docker images, buildt from Dockerfiles an then exported as .tar files
Let’s say I have uploaded an exported one to /config/user-data/containers/pippo.tar
then I try to add it to the system with
add container image /config/user-data/containers/pippo.tar
but the error ”Error: invalid reference format”
My workaround is to import manualli with
sudo podman load -i /config/user-data/containers/pippo.tar
and then in configure mode
set container name my-pippo image pippo:latest
and it’s working well, but … isn’t there a better (or simply an official) way to use own containers ?
I think that this way I could have problemas on version updates.
Thanks for any advice.