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

前端 未结 22 2117
孤独总比滥情好
孤独总比滥情好 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-12 23:53

    In my case was the -e before the parameters for mysql docker

    docker run --name mysql-standalone -e MYSQL_ROOT_PASSWORD=hello -e MYSQL_DATABASE=hello -e MYSQL_USER=hello -e MYSQL_PASSWORD=hello -d mysql:5.6
    

    Check also if there are missing whitespaces

提交回复
热议问题