Docker error: invalid reference format: repository name must be lowercase

前端 未结 22 2122
孤独总比滥情好
孤独总比滥情好 2020-12-12 23:07

Ran into this Docker error with one of my projects:

invalid reference format: repository name must be lowercase

What are the various causes for

22条回答
  •  再見小時候
    2020-12-13 00:03

    In my case DockerFile contained the image name in mixed case instead of lower case.

    Earlier line in my DockerFile

    FROM CentOs
    

    and when I changed above to FROM centos, it worked smoothly.

提交回复
热议问题