我需要做些什么才能通过Docker Hub向公众提供我的图像?
搜索的一些错误
The push refers to a repository docker.io/yourname/yourimage
或
Repository does not exist: docker.io/yourname/yourimage
答案 0 :(得分:7)
执行命令
docker login
这将为〜/ .docker / config.json添加一个看起来像这样的文件:
{
"auths": {
"https://index.docker.io/v1/": {
"auth": "somekey",
"email": "your@emailaddress.com"
}
}
}
你应该可以做一个
docker push yourname/yourimage