Configuring Alibaba Cloud Docker Container Service To log in to the Alibaba Cloud Image Service console, you must first have your own Alibaba Cloud account 1. Click on the name space. It is recommended to use your own name/company name For example, aliyun-stg Create the namespace 2. Click on the image repository, create an image, and fill in the detailed information Warehouses can be managed using names such as Redis, mysql, etc. Create a warehouse 3. Observe the information after creation
Ali Docker domain name registry.cn-beijing.aliyuncs.com My own namespace and others cannot overlap. The image repository name cannot be repeated in the same namespace as your own. 4. We chose local configuration # Set Alibaba Cloud username and password $ sudo docker login --username=your username registry.cn-beijing.aliyuncs.com # Pull the image from the registry $ sudo docker pull registry.cn-beijing.aliyuncs.com/aliyun-stg/flask:[image version number] # Push the image from local to Registry # Select the registry address, Shanghai, Beijing or Shenzhen$ sudo docker login --username=your username registry.cn-beijing.aliyuncs.com # Change the tag of the local image so that it looks consistent with Alibaba's path. $ sudo docker tag [ImageId] registry.cn-beijing.aliyuncs.com/aliyun-stg/flask:[image version number] # Push to Alibaba Cloud Docker repository$ sudo docker push registry.cn-beijing.aliyuncs.com/aliyun-stg/flask:[image version number] The above is to use the public network for push. If the server you are using happens to be Alibaba Cloud, you can use the intranet for push, which will not occupy your public network bandwidth. If the machine you are using is located in a VPC network, please use registry-vpc.cn-beijing.aliyuncs.com as the domain name to log in to the Registry and as the image namespace prefix. For example, if the local image is called Redis, then you also create a repository called Redis on the cloud. Push different versions of Redis to this repository # Use the "docker tag" command to rename the image and push it to the registry via the private network address. $ sudo docker images REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE registry.aliyuncs.com/acs/agent 0.7-dfb6816 37bb9c63c8b2 7 days ago 37.89 MB $ sudo docker tag 37bb9c63c8b2 registry-vpc.cn-beijing.aliyuncs.com/acs/agent:0.7-dfb6816 # Use the "docker images" command to find the image and change the domain name in the image name to the registry private network address. $ sudo docker push registry-vpc.cn-beijing.aliyuncs.com/acs/agent:0.7-dfb6816 The above article about Docker configuration of Alibaba Cloud Container Service is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: HTML implements the function of detecting input completion
>>: Detailed explanation of keepAlive usage in Vue front-end development
1. Python installation 1. Create a folder. mkdir ...
In an article a long time ago, I talked about the...
Table of contents 1 Indicators in stress testing ...
The powerful tool cgroup in the kernel can not on...
I believe that many users who make websites will ...
Install ZLMediaKit on centos6 The author of ZLMed...
difficulty Two mask creation of svg graphics Firs...
Preface The writing of front-end code can never e...
01. Command Overview basename - strip directories...
Table of contents Preface JS Magic Number Storing...
OOM stands for "Out Of Memory", which m...
Preface Before, I used cache to highlight the rou...
Vertical table Vertical table splitting means spl...
System environment: Win10 64-bit MySQL version: m...
Definition of Generics // Requirement 1: Generics...