Docker 镜像push上传远程仓库出错:requested access to the resource is denied
原因
本地镜像无仓库信息
解决方案
标记本地镜像,将其归入某一仓库。
Usage: docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
例:
docker tag bf756fblae65 intimidate/eedc_test:latest
参数说明
bf756fblae65--------[IMAGE ID]
intimidate --------[远程仓库名称]
eedc_test-----------[REPOSITORY]
latest--------------[TAG]
飞过森林 看见海洋