I ve created my own docker file ( that runs a shell script which prints \"helloworld\"). The image is \"hellodocker\" and the tag is \"mytag\" I now have:
ba
You either need to tag it as /hellodocker when you build it, e g
/hellodocker
docker build -t /hellodocker:mytag .
or create a new tag tied to the same image, i e
docker tag hellodocker:mytag /hellodocker:mytag