SlideShare a Scribd company logo
Docker Ecosystem - Part V
by
@mario21ic
Talleres
UNT
Agenda
Docker Registry
Demo
Preguntas?
Problema
Y si quiero images privados?
Consumo excesivo de la red
Mantenimiento de mis images
Automatizacion de build images
Docker Registry
Docker Registry
Repositorios de images
Permite modo seguro e iseguro
Portable dentro de Docker
Docker Registry
Iniciar registry:
$ docker run -d -p 5000:5000 --name registry registry:2
$ docker pull ubuntu
$ docker tag ubuntu localhost:5000/myfirstimage
$ docker push localhost:5000/myfirstimage
$ docker rmi localhost:5000/myfirstimage
$ docker pull localhost:5000/myfirstimage
$ docker images|grep localhost
Docker Registry -
config.yml
version: 0.1
log:
fields:
service: registry
storage:
cache:
layerinfo: inmemory
filesystem:
rootdirectory: /var/lib/registry
http:
addr: :5000
headers: X-Content-Type-Options: [nosniff]
health:
storagedriver:
enabled: true
interval: 10s
threshold: 3
Registry - docker-
compose.yml
version: '2'
services:
registry:
container_name:
restart: always
image: registry:2
ports:
- 5000:5000
volumes:
- ./config.yml:/etc/docker/registry/config.yml
- ./data:/var/lib/registry
Gracias
Preguntas?

More Related Content

What's hot (20)

PDF
Provisioning & Deploying with Docker
Erica Windisch
 
PDF
Docker & FieldAware
Jakub Jarosz
 
PDF
Docker orchestration using core os and ansible - Ansible IL 2015
Leonid Mirsky
 
PDF
Docker 101 - from 0 to Docker in 30 minutes
Luciano Fiandesio
 
PDF
Docker up and running
Victor S. Recio
 
PPTX
Austin - Container Days - Docker 101
Bill Maxwell
 
PDF
Dockerize your Symfony application - Symfony Live NYC 2014
André Rømcke
 
PPTX
Dockerizing a Symfony2 application
Roman Rodomansky
 
PDF
Docker 初探,實驗室中的運貨鯨
Ruoshi Ling
 
PDF
Getting instantly up and running with Docker and Symfony
André Rømcke
 
PDF
How to create your own hack environment
Sumedt Jitpukdebodin
 
PDF
2015 DockerCon Using Docker in production at bity.com
Mathieu Buffenoir
 
PDF
Docker n co
Rohit Jnagal
 
PDF
Docker Started
Victor S. Recio
 
PDF
Docker & rancher
Alin Voinea
 
PDF
Continuous integration with Docker and Ansible
Dmytro Slupytskyi
 
PDF
Docker 101
NSConclave
 
PDF
Running Django on Docker: a workflow and code
Danielle Madeley
 
PDF
Ondřej Šika: Docker, Traefik a CI - Mějte nasazené všeny větve na kterých pra...
Develcz
 
PDF
CoreOS Overview
Victor S. Recio
 
Provisioning & Deploying with Docker
Erica Windisch
 
Docker & FieldAware
Jakub Jarosz
 
Docker orchestration using core os and ansible - Ansible IL 2015
Leonid Mirsky
 
Docker 101 - from 0 to Docker in 30 minutes
Luciano Fiandesio
 
Docker up and running
Victor S. Recio
 
Austin - Container Days - Docker 101
Bill Maxwell
 
Dockerize your Symfony application - Symfony Live NYC 2014
André Rømcke
 
Dockerizing a Symfony2 application
Roman Rodomansky
 
Docker 初探,實驗室中的運貨鯨
Ruoshi Ling
 
Getting instantly up and running with Docker and Symfony
André Rømcke
 
How to create your own hack environment
Sumedt Jitpukdebodin
 
2015 DockerCon Using Docker in production at bity.com
Mathieu Buffenoir
 
Docker n co
Rohit Jnagal
 
Docker Started
Victor S. Recio
 
Docker & rancher
Alin Voinea
 
Continuous integration with Docker and Ansible
Dmytro Slupytskyi
 
Docker 101
NSConclave
 
Running Django on Docker: a workflow and code
Danielle Madeley
 
Ondřej Šika: Docker, Traefik a CI - Mějte nasazené všeny větve na kterých pra...
Develcz
 
CoreOS Overview
Victor S. Recio
 

Viewers also liked (20)

PPTX
Docker Ecosystem - Part I - Engine
Mario IC
 
PPTX
Docker Ecosystem: Part IV - Swarm
Mario IC
 
PPTX
Docker Ecosystem - Part II - Compose
Mario IC
 
PDF
Docker ecosystem
Bohdan Sydor
 
PDF
Docker Advanced registry usage
Docker, Inc.
 
PPTX
Docker Demo IBM Impact 2014
aspyker
 
PDF
Icinga 2 and Puppet - Automate Monitoring
OlinData
 
PPTX
Aws Autoscaling
Kimberly Macias
 
PDF
Jenkins Peru Meetup Docker Ecosystem
Mario IC
 
PPTX
DockerCon EU 2015: What's New with Docker Trusted Registry
Docker, Inc.
 
PDF
Docker Registry V2
Docker, Inc.
 
PDF
containerd summit - Deep Dive into containerd
Docker, Inc.
 
PDF
containerd and CRI
Docker, Inc.
 
PDF
Docker registry入門 第五回コンテナ型仮想化の情報交換会
Kengo Okitsu
 
PDF
How Does Amazon EC2 Auto Scaling Work
Intelligentia IT Systems Pvt. Ltd.
 
PDF
Docker ecosystem
zefhemel
 
PDF
Korean Startup Ecosystem Map (v 2.1)
StartupAlliance
 
PDF
Docker Ecosystem: Engine, Compose, Machine, Swarm, Registry
Mario IC
 
PPTX
Docker Ecosystem on Azure
Patrick Chanezon
 
PDF
The Docker Ecosystem
Dmitry Skaredov
 
Docker Ecosystem - Part I - Engine
Mario IC
 
Docker Ecosystem: Part IV - Swarm
Mario IC
 
Docker Ecosystem - Part II - Compose
Mario IC
 
Docker ecosystem
Bohdan Sydor
 
Docker Advanced registry usage
Docker, Inc.
 
Docker Demo IBM Impact 2014
aspyker
 
Icinga 2 and Puppet - Automate Monitoring
OlinData
 
Aws Autoscaling
Kimberly Macias
 
Jenkins Peru Meetup Docker Ecosystem
Mario IC
 
DockerCon EU 2015: What's New with Docker Trusted Registry
Docker, Inc.
 
Docker Registry V2
Docker, Inc.
 
containerd summit - Deep Dive into containerd
Docker, Inc.
 
containerd and CRI
Docker, Inc.
 
Docker registry入門 第五回コンテナ型仮想化の情報交換会
Kengo Okitsu
 
How Does Amazon EC2 Auto Scaling Work
Intelligentia IT Systems Pvt. Ltd.
 
Docker ecosystem
zefhemel
 
Korean Startup Ecosystem Map (v 2.1)
StartupAlliance
 
Docker Ecosystem: Engine, Compose, Machine, Swarm, Registry
Mario IC
 
Docker Ecosystem on Azure
Patrick Chanezon
 
The Docker Ecosystem
Dmitry Skaredov
 
Ad

Similar to Docker Ecosystem: Part V - Docker Registry (20)

PPTX
Docker
Hussien Elhannan
 
PDF
Docker Internet Money Gateway
Mathieu Buffenoir
 
PDF
Docker img-no-disclosure
Mathieu Buffenoir
 
PPT
Containers 101
Black Duck by Synopsys
 
PDF
Running the Oracle SOA Suite Environment in a Docker Container
Guido Schmutz
 
PPTX
You, and Me, and Docker Makes Three
Christopher Grayson
 
PDF
Common primitives in Docker environments
alexandru giurgiu
 
PDF
Docker
Brian Hogan
 
PDF
Up and running with docker
Michelle Liu
 
PPTX
Docker and the Container Ecosystem
psconnolly
 
PDF
Docker-v3.pdf
Bruno Cornec
 
PPTX
Docker-Presentation.pptx
Vipobav
 
PDF
Docker for Developers: Dev, Test, Deploy @ BucksCo Devops at MeetMe HQ
Erica Windisch
 
PDF
Docker for developers
andrzejsydor
 
PDF
Docker Tutorial.pdf
MuhammadYusuf767705
 
PPTX
Introducing & playing with Docker | Manel Martinez | 1st Docker Crete Meetup
Alexandra Karapidaki
 
PDF
Docker by Example - Basics
CodeOps Technologies LLP
 
PPTX
Virtualization, Containers, Docker and scalable container management services
abhishek chawla
 
PDF
Docker mentorweek
Pavan Wankhade
 
PPTX
Docker for developers z java
andrzejsydor
 
Docker Internet Money Gateway
Mathieu Buffenoir
 
Docker img-no-disclosure
Mathieu Buffenoir
 
Containers 101
Black Duck by Synopsys
 
Running the Oracle SOA Suite Environment in a Docker Container
Guido Schmutz
 
You, and Me, and Docker Makes Three
Christopher Grayson
 
Common primitives in Docker environments
alexandru giurgiu
 
Docker
Brian Hogan
 
Up and running with docker
Michelle Liu
 
Docker and the Container Ecosystem
psconnolly
 
Docker-v3.pdf
Bruno Cornec
 
Docker-Presentation.pptx
Vipobav
 
Docker for Developers: Dev, Test, Deploy @ BucksCo Devops at MeetMe HQ
Erica Windisch
 
Docker for developers
andrzejsydor
 
Docker Tutorial.pdf
MuhammadYusuf767705
 
Introducing & playing with Docker | Manel Martinez | 1st Docker Crete Meetup
Alexandra Karapidaki
 
Docker by Example - Basics
CodeOps Technologies LLP
 
Virtualization, Containers, Docker and scalable container management services
abhishek chawla
 
Docker mentorweek
Pavan Wankhade
 
Docker for developers z java
andrzejsydor
 
Ad

More from Mario IC (20)

PDF
Testing Day Peru 2025 Introducción al testing en Infrastructure as Code
Mario IC
 
PDF
RAG en AWS llevando la IA Generativa al Siguiente Nivel
Mario IC
 
PPTX
Seguridad Digital un encuentro con la Criptografía de la mano de AWS KMS
Mario IC
 
PPTX
AWS Community Day Peru 2024 - Generative IA con AWS Bedrock + Langchain
Mario IC
 
PPTX
Pentesting Kubernetes con AWS EKS GuardDuty Detective ECR e Inspector
Mario IC
 
PPTX
Dominando AWS KMS desde cifrado básico hasta firma avanzada - aws community d...
Mario IC
 
PPTX
Aws Security Latam - Criptografia con KMS
Mario IC
 
PDF
Aws Community Day Guatemala Criptografia con AWS KMS
Mario IC
 
PDF
Testing Ansible Playbook con Molecule + TestInfra
Mario IC
 
PDF
Automatización de tareas con Ansible
Mario IC
 
PDF
Earthly, Dockerfile con esteroides
Mario IC
 
PDF
Infraestructura como Codigo para Developers
Mario IC
 
PDF
Terraspace, the definitive terraform framework
Mario IC
 
PDF
Manejo de packages en Kubernetes con Helm
Mario IC
 
PPTX
Cloud native Computing Perú Octubre
Mario IC
 
PDF
Agiles Peru 2019 - Infrastructure As Code
Mario IC
 
PDF
Workshop Infrastructure as Code - Suestra
Mario IC
 
PDF
Docker Lima meetup - 22 de junio
Mario IC
 
PDF
Docker Compose para el Docker Lima Meetup Mayo
Mario IC
 
PDF
Testing en BDD con Python y Behave
Mario IC
 
Testing Day Peru 2025 Introducción al testing en Infrastructure as Code
Mario IC
 
RAG en AWS llevando la IA Generativa al Siguiente Nivel
Mario IC
 
Seguridad Digital un encuentro con la Criptografía de la mano de AWS KMS
Mario IC
 
AWS Community Day Peru 2024 - Generative IA con AWS Bedrock + Langchain
Mario IC
 
Pentesting Kubernetes con AWS EKS GuardDuty Detective ECR e Inspector
Mario IC
 
Dominando AWS KMS desde cifrado básico hasta firma avanzada - aws community d...
Mario IC
 
Aws Security Latam - Criptografia con KMS
Mario IC
 
Aws Community Day Guatemala Criptografia con AWS KMS
Mario IC
 
Testing Ansible Playbook con Molecule + TestInfra
Mario IC
 
Automatización de tareas con Ansible
Mario IC
 
Earthly, Dockerfile con esteroides
Mario IC
 
Infraestructura como Codigo para Developers
Mario IC
 
Terraspace, the definitive terraform framework
Mario IC
 
Manejo de packages en Kubernetes con Helm
Mario IC
 
Cloud native Computing Perú Octubre
Mario IC
 
Agiles Peru 2019 - Infrastructure As Code
Mario IC
 
Workshop Infrastructure as Code - Suestra
Mario IC
 
Docker Lima meetup - 22 de junio
Mario IC
 
Docker Compose para el Docker Lima Meetup Mayo
Mario IC
 
Testing en BDD con Python y Behave
Mario IC
 

Recently uploaded (20)

PPTX
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
PDF
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
PPTX
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
PDF
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
PPTX
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
PPTX
Coefficient of Variance in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
PDF
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
PDF
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PPTX
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Tally software_Introduction_Presentation
AditiBansal54083
 
PPTX
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
PPTX
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 
PDF
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
PDF
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
PDF
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
PDF
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
Coefficient of Variance in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Tally software_Introduction_Presentation
AditiBansal54083
 
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
Foundations of Marketo Engage - Powering Campaigns with Marketo Personalization
bbedford2
 
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
Generic or Specific? Making sensible software design decisions
Bert Jan Schrijver
 
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 

Docker Ecosystem: Part V - Docker Registry