The image can be easily pushed directly to the Docker public repository, just like GitHub, but we often don't want to make the image file public during development. In this case, we need to build a Docker private repository, just like GitLab. After building the image in the previous article, we can deploy a private image repository to store our image. Start a private registry Starting a private repository is also very simple. Execute the command on the server Copy the code as follows: docker run -d -p 5000:5000 --name="docker-registry" --restart=always -v /root/docker/registry/:/var/lib/registry/ registry That is, the container built by the registry image is started in the background and named Why After successfully executing the Upload image To upload an image to a private repository, you need to add the repository address to the image tag: docker tag express-app 111.111.111.111:5000/sunhengzhe/express-app:v1 In order to avoid conflicts with other images, you can add a namespace such as Note that the repository address does not include the protocol part. The default security policy of Docker requires that the repository supports Mac configuration After the change, you need to CentOS system Write in the { "registry-mirror": [ "https://registry.docker-cn.com" ], "insecure-registries": [ "[private warehouse ip:port]" ] } Then restart docker systemctl restart docker Push image After typing docker push 111.111.111.111:5000/sunhengzhe/express-app:v1 Push failed If the problem of docker logs -f docker-registry If chcon -Rt svirt_sandbox_file_t /root/docker/registry/ In this example, it is Pull the image Use the docker pull 111.111.111.111:5000/sunhengzhe/express-app:v1 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:
|
<<: mysql5.7.19 winx64 decompressed version installation and configuration tutorial
>>: Detailed explanation of the cache implementation principle of Vue computed
What is k3d? k3d is a small program for running a...
Combining the various problems I encountered in m...
Table of contents Preface 1. Install NJS module M...
Table of contents 01 Common Faults 1 02 Common Fa...
Definition of Generics // Requirement 1: Generics...
This article example shares the specific code of ...
First, let me talk about the general idea: 1. Log...
Method 1: Use the SET PASSWORD command mysql> ...
I was recently working on a project at the compan...
MySQL is a relational database management system....
CSS3Please Take a look at this website yourself, ...
ElementUI implements a table tree list loading tu...
Table of contents 1. The default focus is on the ...
During this period of time, while working on a pr...
1. Differences in network configuration between C...