Docker Registry Operations: Difference between revisions
Jump to navigation
Jump to search
(→Start) |
No edit summary |
||
Line 12: | Line 12: | ||
=Overview= | =Overview= | ||
"[[Docker_Concepts#Docker_Registry_-_Exposing_the_Content_of_the_Local_Image_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]]. Note that by default the Docker Registry container starts with HTTP support only, so all other Docker servers that use it must be configured to allow it as an "insecure registry", with --insecure-registry as described [[ | "[[Docker_Concepts#Docker_Registry_-_Exposing_the_Content_of_the_Local_Image_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]]. Note that by default the Docker Registry container starts with HTTP support only, so all other Docker servers that use it must be configured to allow it as an "insecure registry", with --insecure-registry as described [[Docker_Server_Configuration#--insecure-registry|here]]. | ||
=Start= | =Start= |
Revision as of 20:37, 20 April 2018
External
- https://docs.docker.com/registry/
- https://docs.docker.com/registry/introduction/
- https://docs.docker.com/registry/deploying/
- https://docs.docker.com/registry/insecure/
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. Note that by default the Docker Registry container starts with HTTP support only, so all other Docker servers that use it must be configured to allow it as an "insecure registry", with --insecure-registry as described here.
Start
docker run -d -p 5000:5000 --restart=always --name registry registry:2
Test it with:
curl -v http://<''ip-address''>:5000/v2/
* Trying 192.168.1.10...
* TCP_NODELAY set
* Connected to 192.168.1.10 (192.168.1.10) port 5000 (#0)
> GET /v2/ HTTP/1.1
> Host: 192.168.1.10:5000
> User-Agent: curl/7.54.0
> Accept: */*
>
< HTTP/1.1 200 OK
< Content-Length: 2
< Content-Type: application/json; charset=utf-8
< Docker-Distribution-Api-Version: registry/2.0
< X-Content-Type-Options: nosniff
< Date: Thu, 19 Apr 2018 23:35:25 GMT
<
Customize Storage Location
docker run ... -v <native-host-path>:<container-mount-point> ...
docker run ... -v /mnt/registry:/var/lib/registry ...
docker run -d -p 5000:5000 --restart=always -v /var/lib/registry:/var/lib/registry --name registry registry:2