Docker Registry Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Docker Operations =Overview= "Docker Registry" in this context refers to the image published by Docker, which instantiates as ...")
 
Line 6: Line 6:


"Docker Registry" in this context refers to the image published by Docker, which instantiates as [[Docker_Concepts#Exposing_the_Content_of_the_Local_Image_Registry_over_TCP_with_Docker_Registry|a container that exposes the content of the local registry over TCP]].
"Docker Registry" in this context refers to the image published by Docker, which instantiates as [[Docker_Concepts#Exposing_the_Content_of_the_Local_Image_Registry_over_TCP_with_Docker_Registry|a container that exposes the content of the local registry over TCP]].
=Start=
docker run -d -p 5000:5000 --name registry registry:2

Revision as of 22:33, 19 April 2018

Internal

Overview

"Docker Registry" in this context refers to the image published by Docker, which instantiates as a container that exposes the content of the local registry over TCP.

Start

docker run -d -p 5000:5000 --name registry registry:2