上传镜像
1. 在本地 docker 环境中输入以下命令进行登录sudo docker login index.tenxcloud.com2. 然后,对本地需要 push 的 image 进行标记,比如:sudo docker tag tenxcloud/ubuntu:latest index.tenxcloud.com// : 3. 最后在命令行输入如下命令,就可以 push 这个 image 到镜像仓库中了sudo docker push index.tenxcloud.com/ / :
下载镜像
私有镜像需要先 login 后才能拉取sudo docker pull index.tenxcloud.com// : 为了在本地方便使用,下载后可以修改 为短标签,比如:sudo docker tag index.tenxcloud.com/tenxcloud/hello-world:latst tenxcloud/hello-world:latest
官网有教程 https://portal.tenxcloud.com