第一步,我在https://hub.docker.com/repositories创建了自己的仓库
第二步,复制 docker push yurro(你的docker用户名)/react-web:tagname 命令上传失败,错误An image does not exist locally with the tag: yurro/react-web 没有找到本地的镜像
第三步,使用docker push 方法上传,
1.docker ps 获取镜像容器id
2.docker container commit a8924d1729f2(镜像对应的容器id) react-web:latest(我的镜像名称是叫react-web,:latest是版本号)
3.docker image tag react-web:latest yurro/react-web:1.0.0(这里下划线标记的要对应hub仓库,我的是yurro/react-web,没有对应上是无法上传成功的,会报错denied: requested access to the resource is denied)
4.docker image push yurro/react-web:1.0.0
参考链接:https://docs.docker.com/engine/reference/commandline/push/
标签:web,react,yurro,镜像,docker,上传 From: https://www.cnblogs.com/yurro/p/16755975.html