准备工作
在阿里云上创建一个 namespace
注意:此处必须创建命名空间,否则会有报错信息拒绝:请求访问资源被拒绝
相关源码
方式一:命令行
1.制作镜像:$ docker build -t any-keepalived .
2.登录阿里云:$ docker login --username=***** registry.cn-hangzhou.aliyuncs.com
3.标记 TAG:docker tag [ImageId] registry.cn-hangzhou.aliyuncs.com/namespace/keepalived:[镜像版本号]
4.推送到阿里云:$ docker push registry.cn-hangzhou.aliyuncs.com/namespace/keepalived:[镜像版本号]
方式二:代码仓库(如 Github)
1.将制作镜像的 Dockerfile 及相关文件 push 到 Github
2.创建镜像
3.构建镜像
4.获取镜像:$ docker pull registry.cn-hangzhou.aliyuncs.com/anoy/keepalived