【发布时间】:2015-10-02 05:02:28
【问题描述】:
当我尝试将我的 docker 镜像推送到 docker hub 时:
docker push nickname/sokia-parser:latest
然后我从 docker 收到这个错误:
The push refers to a repository [docker.io/nickname/sokia-parser] (len: 1)
Sending image list
Pushing repository docker.io/nickname/sokia-parser (1 tags)
843e2bded498: Pushing
HTTP code 403 while uploading metadata: "invalid character '<' looking for beginning of value"
镜像的Dockerfile:
FROM python:3.4-onbuild
COPY . /usr/src/app
CMD ["./run.py"]
Docker 版本是1.8.2, build 0a8c2e3
请告诉我,哪里有问题?
【问题讨论】:
-
根据github.com/docker/docker/issues/16746#issuecomment-148323558,Docker Hub 出现了一个临时问题,可能会导致某些用户出现这些错误。现在应该解决这些问题
-
@thaJeztah,谢谢!
标签: docker dockerhub docker-registry