Skip to main content

push镜像到自己的dockerhub

link to 谷歌云快速入门(二) 存储文件然后共享

link to 谷歌云快速入门(四) 训练TensorFlow模型

link to Container Registry 快速入门快速入门

link to docker知识1

link to docker知识2

link to 谷歌云快速入门(三) 使用GKE(Google Kubernetes Engine)部署容器化应用

step1: 登录自己的dockerhub,点击create Repository

png

step2: 创建仓库repository

复制要保存的仓库名字和推送命令 png

step3: 查看本地仓库的镜像

docker images

png

step4: 查看本地仓库的镜像

docker tag 本地镜像名字 dockerhub仓库镜像名字
docker tag quickstart-image flybirdgroup/helloworld:lastest

png

step5: 推送镜像到远程仓库

敲黑板

在push前一定要在系统先登录docker

docker login
docker push flybirdgroup/helloworld:lastest

png

如果需要修改镜像,可以通过进入容器,再去修改里面,最后再把容器变成新的镜像

docker exec -it container_ID /bin/bash

修改文件后,exit退出,把容器变成镜像

sudo docker commit containerid flybirdgroup/news