How to build DockerHub yourself

How to build DockerHub yourself

The Docker Hub we used earlier is provided by Docker. We can also build our own Docker, and the construction method is also very container-based, because
Docker has officially made the Docker registration server into a mirror, we can just pull it down and run it. The specific steps are as follows:

Pull the image

Run the following command to pull the official registry image:

docker pull registry

run

Next, run the following command to run the registry, as follows:

docker run -itd --name registry -p 5000:5000 2e2f252f3c88

After the operation is successful, we can submit our own image to the registry as follows:

It should be noted here that the local image is named in the format of registryHost:registryPort/imageName:tag.

The container runs on the host machine. Only if the external network can access the container can the services it provides be used. This article will introduce the network knowledge in the container

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:
  • Analysis of the operating principle and implementation process of Docker Hub
  • Detailed explanation of the use of DockerHub image repository
  • How to publish a locally built docker image to dockerhub
  • Implementation of pushing Docker images to Docker Hub
  • Docker Tutorial: Docker Hub Introduction
  • Detailed explanation of how to use the official MySQL image from DockerHub
  • How to create your own Docker image and upload it to Dockerhub

<<:  Detailed explanation of the correct use of the count function in MySQL

>>:  React's transition from Class to Hooks

Recommend

Seven solutions for classic distributed transactions between MySQL and Golan

Table of contents 1. Basic theory 1.1 Transaction...

About Generics of C++ TpeScript Series

Table of contents 1. Template 2. Generics 3. Gene...

How to convert JavaScript array into tree structure

1. Demand The backend provides such data for the ...

A brief analysis of Linux network programming functions

Table of contents 1. Create a socket 2. Bind sock...

Linux checkup, understand your Linux status (network IO, disk, CPU, memory)

Table of contents 1. Core commands 2. Common comm...

Using Zabbix to monitor the operation process of Oracle table space

0. Overview Zabbix is ​​an extremely powerful ope...

A brief analysis of the use of the HTML webpack plugin

Using the html-webpack-plugin plug-in to start th...

Diagram of the process of implementing direction proxy through nginx

This article mainly introduces the process of imp...

Solution to the problem that input in form cannot be submitted when disabled

I wrote a test program before, in which adding and...

HTML is actually the application of learning several important tags

After the article "This Will Be a Revolution&...

Better-scroll realizes the effect of linking menu and content

1. Basic use <!DOCTYPE html> <html lang=...

Ubuntu 18.04 obtains root permissions and logs in as root user

Written in advance: In the following steps, you n...

MySQL operations: JSON data type operations

In the previous article, we introduced the detail...