This time, we will try to package the running container into an image and upload it to Alibaba Cloud, so that it can be downloaded and used more conveniently elsewhere. After all, it is not difficult to install Docker, but the problem is that some special configurations are troublesome, so just make it and it will be much easier to pull and run it next time First, enter the mirror. If it is not clear, you can read the previous chapter. Then update the image: You need to exit after updating here: exit Then commit the copy of the container to create a new image: Successfully returned sha code:
It can be found that the image has been packaged successfully: Run the new container: You can run a new container and see the results. At this point, the image has been created. Let's upload the image. This is the image repository uploaded to Alibaba Cloud, and then bound to the GIT repository, and the pull is also pulled from here. Here is a record; Also thanks to https://blog.csdn.net/jacksonary/article/details/78961612 for the method I got from here. Enter the control backend of Alibaba Cloud: Then create the image repository: After creation, select the code source: This is relatively simple, just bind a repository to your GIT account. Just bind it. After successful creation, enter the warehouse configuration: Alibaba Cloud has already provided the pull and push instructions, you just need to run them. Here we also experiment with uploading the image to the warehouse. Just copy the instructions and upload them. It's very simple, but the uploading process will be a bit slow. [root@VM_0_4_centos ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE niginx_my/nginx v1 1836e4017c60 16 hours ago 125MB hello-world latest 4ab4c602aa5e 10 days ago 1.84kB nginx latest 06144b287844 13 days ago 109MB [root@VM_0_4_centos ~]# docker login --username=sun29550 registry.cn-qingdao.aliyuncs.com Password: WARNING! Your password will be stored unencrypted in /root/.docker/config.json. Configure a credential helper to remove this warning. See https://docs.docker.com/engine/reference/commandline/login/#credentials-store Login Succeeded [root@VM_0_4_centos ~]# docker tag [1836e4017c60] registry.cn-qingdao.aliyuncs.com/mysokou/soko_2:v1 Error parsing reference: "[1836e4017c60]" is not a valid repository/tag: invalid reference format [root@VM_0_4_centos ~]# docker tag niginx_my/nginx:v1 registry.cn-qingdao.aliyuncs.com/mysokou/soko_2:v1 [root@VM_0_4_centos ~]# docker push registry.cn-qingdao.aliyuncs.com/mysokou/soko_2:v1 The push refers to repository [registry.cn-qingdao.aliyuncs.com/mysokou/soko_2] 9e2c0a77e8a4: Pushed 579c75bb43c0: Pushed 67d3ae5dfa34: Pushed 8b15606a9e3e: Pushed v1: digest: sha256:49768cfb207e5a133d62f3f5a7e59723e7a8c3a0d2c81e4155b34561f557adfc size: 1160 After the upload is successful, go to Alibaba's backend to check that the upload is successful. Added DockerHUB upload method My Mirror After adding the tag, you can push it directly. I logged in before pushing it.
Push directly after login
result:
You can go to the backend to check the image and upload it successfully. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: The normal method of MySQL deadlock check processing
>>: Vue3 AST parser-source code analysis
This article example shares the specific code of ...
If you’re looking for inspiration for columnar web...
Solution to Ubuntu dual system stuck when startin...
Contemporary web visual design has gone through th...
From today on, I will regularly organize some smal...
Table of contents Preface 1. Install NJS module M...
When we check the source code of many websites, w...
This article example shares the specific code of ...
This is the effect of the Element UI loading comp...
I encountered this problem before when developing...
Original source: www.bamagazine.com There are nar...
Problem Description There is a type of query call...
The so-called connection limit in Nginx is actual...
I am currently learning MySQL. I am a complete no...
1. Go to the location where you want to store the...