Diferencia entre revisiones de «Plantilla:Docker/Registro»

De WikiEducator
Saltar a: navegación, buscar
Línea 1: Línea 1:
 +
<div class=parrafo>
 
{{MRM_Recursos de la Web|
 
{{MRM_Recursos de la Web|
 
*https://hub.docker.com/ Sitio oficial de imágenes
 
*https://hub.docker.com/ Sitio oficial de imágenes
Línea 25: Línea 26:
 
docker pull myregistrydomain:port/foo/bar instructs docker to contact the registry located at myregistrydomain:port to find the image foo/bar
 
docker pull myregistrydomain:port/foo/bar instructs docker to contact the registry located at myregistrydomain:port to find the image foo/bar
 
-->
 
-->
 +
</parrafo>

Revisión de 04:28 15 mar 2019


Icon inter.gif
Recursos de la Web



  • Un registro es un sistema de almacenamiento de imágenes de docker dónde se pueden subir y bajar imágenes.
  • Para que el usuario interactúe con el registro, necesita dos comandos


pull => Obtener una imagen del registro a tu sistema.
push => Subir una imagen al registro.

  • Lo habitual es usar el registro oficial llamado docker hub
  • También podremos, por rapidez, crear un registro local y que sea éste el que responda a las solicitudes de nuestra red; ésto claramente ahorra tiempo y no colapsará la red externa.


Icon casestudy.gif
Ejemplo
docker pull ubuntu


El nombre de la imagen identifica su origen o registro del que se obtiene.

</parrafo>