SlideShare a Scribd company logo
1 of 25
Download to read offline
Docker 102 
Immutable Infrastructure 
Presented by: Adrian Otto 
Prepared for: Docker Los Angeles 
Date: September 10, 2014
Adrian Otto 
• Principal Architect, Rackspace 
• PTL, Solum 
• Chair, OpenStack Containers Team 
• Co-Chair, OASIS CAMP Technical Committee 
2
3 
Quick Review of Docker 101
4 
Docker 101 Slides 
http://www.slideshare.net/adrianjotto/docker-101-38986794 
Please view slides above for my overview of Docker
5 
Immutable Infrastructure
Immutable 
[ih-myoo-tuh-buh l] 
adjective 
1. Not mutable; unchangeable; changeless. 
Origin: 
1375-1425; late Middle English < Latin immūtābilis. 
6
Immutable 
I - Mute - The - Bull 
7
What is Immutable Infrastructure? 
• Utopia 
– Applications are deployed, and code is never modified. 
– Configuration is never modified (in place) 
– Patches are never applied 
– Only administrative actions are “deploy” and “destroy”. 
8
Who Cares? 
• Rationale 
– Full Automation Means Consistency 
– Re-Deploy More Often 
– SHIP IT 
– $$$ 
9
How? 
• Any time you want to do a change to your app, redeploy. 
• Any time you want to change your data schema, migration script. 
10
11 
Techniques
Feature Flags 
• Assumes you control the code in the application 
• Wrap new features in conditions 
• Activate conditions in accordance with appropriate risk 
– By group 
– By user settings 
– By percentage of users 
• De-Activate as needed (no re-deploy needed!) 
12
Containerization with Docker 
• Source repository contains a Dockerfile 
• Build process produces a container 
• Inject configuration using ENV key/pair values 
• Use same container for test, stage, and prod 
13
Limiting Downtime 
• Green/Blue Deploy 
1. Create live replica of database 
2. Duplicate all application nodes with new code/config 
3. Adjust routing (load balancer) to activate new code 
14 
App v1.0 
App v1.0 
App v1.1 
App v1.1 
Db v1.0 
Db v1.1 
LB
Limiting Risk 
• Canary Deploy 
1. Requires Feature Flags or Sticky LB Sessions 
2. Back up your data 
3. All nodes use the production database 
4. Route new connections to new node(s) 
15 
App v1.0 
LB App v1.0 
Db v1.0 
App v1.1
When to Use Canary 
• No contract breaking changes to your data schema 
– Or, you have an object versioned database 
• You use feature flags 
• Impractical to test the feature outside production 
• Have a full backup of your data, and can restore 
16
When to Use Blue/Green 
• You are updating your data schema 
• You don’t have an object versioned database 
• You don’t have feature flags 
• Can test the feature outside production 
• Restoring from a backup is not practical (big data sets) 
– Plan for the worst case scenario: Oops, my feature blew up! 
17
18 
Orchestration
Imperative and Declarative 
Imperative 
– Define the process 
– Sequenced steps 
– Usually serialized 
– Expressed as a script 
Examples 
– Shell scripts 
– Puppet scripts 
– Chef recipes 
Declarative 
– Define the outcome 
– Ordering possible 
– Good for parallel work 
– Expressed as a DSL 
Examples 
– Fig 
– Heat 
– Solum 
19
Tools to Help 
• Solum and OpenStack 
– Heat (HOT Files) 
• Jenkins 
• Ansible 
• SaltStack 
• Chef 
20
Immutable Infrastructure with Docker 
• Docker Public Registry 
• Private Registry 
– Run as a container (There be Dragons!) 
– Run with Glance Backend (OpenStack) 
– Run with Swift Backend (OpenStack) 
– Run with S3 Backend (AWS) 
• Docker Private Repos 
– Example: adrianotto/private 
– Not visible in the public registry 
– Only you can push/pull to/from the repo 
– 1 Private Repo is free 
– 5 private repos free for 2 months with promo code: docker-los-angeles 
– Allows for webhook integration 
– Can be shared with other users 
– Can be tagged 
21
22 
https://hub.docker.com
Using a Private Repo 
[root@example~]# docker login! 
Username: h4x0r4u! 
Password: ! 
Email: example@example.com! 
[root@example~]# docker pull centos:centos6! 
[root@example~]# docker run -i -t centos:centos6 /bin/bash! 
bash-4.1# echo hello > hello.txt! 
bash-4.1# exit! 
[root@example~]# docker ps –a! 
CONTAINER ID IMAGE COMMAND CREATED STATUS…! 
f7485ea35f26 centos:centos6 /bin/bash 4 minutes ago Exited (0) 2…! 
[root@example~]# docker commit f7485ea35f26 h4x0r4u/private! 
1898aef1c36014b3702c3532263a9064ba928b78a9b2ccf44a101c61028179cd! 
[root@example~]# docker images! 
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE! 
h4x0r4u/private latest 1898aef1c360 3 seconds ago 212.7 MB! 
centos centos6 68eb857ffb51 1 day ago 212.7 MB! 
23 
Note: Private 
repos can only 
be seen by you
Updating Base Images 
[root@example~]# docker images! 
REPOSITORY TAG IMAGE ID CREATED VIRTUAL 
SIZE! 
centos centos6 b1bd49907d55 5 weeks ago 212.5 MB! 
centos centos7 b157b77b1a65 5 weeks ago 243.7 MB! 
centos latest b157b77b1a65 5 weeks ago 243.7 MB! 
[root@example~]# docker pull centos:centos6! 
68eb857ffb51: Download complete ! 
511136ea3c5a: Download complete ! 
34e94e67e63a: Download complete ! 
[root@example~]# docker images! 
REPOSITORY TAG IMAGE ID CREATED VIRTUAL 
SIZE! 
centos centos6 68eb857ffb51 1 day ago 212.7 MB! 
centos centos7 b157b77b1a65 5 weeks ago 243.7 MB! 
centos latest b157b77b1a65 5 weeks ago 243.7 MB! 
24 
Hint: Automate 
for evergreen 
environment
25

More Related Content

What's hot

Continuous integration with Docker and Ansible
Continuous integration with Docker and AnsibleContinuous integration with Docker and Ansible
Continuous integration with Docker and Ansible
Dmytro Slupytskyi
 

What's hot (20)

Docker Workshop
Docker WorkshopDocker Workshop
Docker Workshop
 
Devoxx 2016: A Developer's Guide to OCI and runC
Devoxx 2016: A Developer's Guide to OCI and runCDevoxx 2016: A Developer's Guide to OCI and runC
Devoxx 2016: A Developer's Guide to OCI and runC
 
docker installation and basics
docker installation and basicsdocker installation and basics
docker installation and basics
 
Docker and the Linux Kernel
Docker and the Linux KernelDocker and the Linux Kernel
Docker and the Linux Kernel
 
Containerize! Between Docker and Jube.
Containerize! Between Docker and Jube.Containerize! Between Docker and Jube.
Containerize! Between Docker and Jube.
 
runC: The little engine that could (run Docker containers) by Docker Captain ...
runC: The little engine that could (run Docker containers) by Docker Captain ...runC: The little engine that could (run Docker containers) by Docker Captain ...
runC: The little engine that could (run Docker containers) by Docker Captain ...
 
dockerizing web application
dockerizing web applicationdockerizing web application
dockerizing web application
 
Docker Introduction
Docker IntroductionDocker Introduction
Docker Introduction
 
Docker for mere mortals
Docker for mere mortalsDocker for mere mortals
Docker for mere mortals
 
Ansible docker
Ansible dockerAnsible docker
Ansible docker
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 
Continuous integration with Docker and Ansible
Continuous integration with Docker and AnsibleContinuous integration with Docker and Ansible
Continuous integration with Docker and Ansible
 
Containerd Internals: Building a Core Container Runtime
Containerd Internals: Building a Core Container RuntimeContainerd Internals: Building a Core Container Runtime
Containerd Internals: Building a Core Container Runtime
 
Using Docker with OpenStack - Hands On!
 Using Docker with OpenStack - Hands On! Using Docker with OpenStack - Hands On!
Using Docker with OpenStack - Hands On!
 
Introduction to docker security
Introduction to docker securityIntroduction to docker security
Introduction to docker security
 
Intro- Docker Native for OSX and Windows
Intro- Docker Native for OSX and WindowsIntro- Docker Native for OSX and Windows
Intro- Docker Native for OSX and Windows
 
Introduction to Docker & CoreOS - Symfony User Group Cologne
Introduction to Docker & CoreOS - Symfony User Group CologneIntroduction to Docker & CoreOS - Symfony User Group Cologne
Introduction to Docker & CoreOS - Symfony User Group Cologne
 
Running Django on Docker: a workflow and code
Running Django on Docker: a workflow and codeRunning Django on Docker: a workflow and code
Running Django on Docker: a workflow and code
 
Intro to containerization
Intro to containerizationIntro to containerization
Intro to containerization
 
Magnum first-class-resource
Magnum first-class-resourceMagnum first-class-resource
Magnum first-class-resource
 

Similar to Docker 102 - Immutable Infrastructure

PDXPortland - Dockerize Django
PDXPortland - Dockerize DjangoPDXPortland - Dockerize Django
PDXPortland - Dockerize Django
Hannes Hapke
 

Similar to Docker 102 - Immutable Infrastructure (20)

Docker 2014
Docker 2014Docker 2014
Docker 2014
 
Dockerizing a Symfony2 application
Dockerizing a Symfony2 applicationDockerizing a Symfony2 application
Dockerizing a Symfony2 application
 
The Tale of a Docker-based Continuous Delivery Pipeline by Rafe Colton (ModCl...
The Tale of a Docker-based Continuous Delivery Pipeline by Rafe Colton (ModCl...The Tale of a Docker-based Continuous Delivery Pipeline by Rafe Colton (ModCl...
The Tale of a Docker-based Continuous Delivery Pipeline by Rafe Colton (ModCl...
 
Dockercon EU 2014
Dockercon EU 2014Dockercon EU 2014
Dockercon EU 2014
 
Docker 1 0 1 0 1: a Docker introduction, actualized for the stable release of...
Docker 1 0 1 0 1: a Docker introduction, actualized for the stable release of...Docker 1 0 1 0 1: a Docker introduction, actualized for the stable release of...
Docker 1 0 1 0 1: a Docker introduction, actualized for the stable release of...
 
Introduction to Docker at the Azure Meet-up in New York
Introduction to Docker at the Azure Meet-up in New YorkIntroduction to Docker at the Azure Meet-up in New York
Introduction to Docker at the Azure Meet-up in New York
 
Docker 0.11 at MaxCDN meetup in Los Angeles
Docker 0.11 at MaxCDN meetup in Los AngelesDocker 0.11 at MaxCDN meetup in Los Angeles
Docker 0.11 at MaxCDN meetup in Los Angeles
 
Containerization using docker and its applications
Containerization using docker and its applicationsContainerization using docker and its applications
Containerization using docker and its applications
 
Containerization using docker and its applications
Containerization using docker and its applicationsContainerization using docker and its applications
Containerization using docker and its applications
 
Getting Started with Docker
Getting Started with DockerGetting Started with Docker
Getting Started with Docker
 
PDXPortland - Dockerize Django
PDXPortland - Dockerize DjangoPDXPortland - Dockerize Django
PDXPortland - Dockerize Django
 
ExpoQA 2017 Using docker to build and test in your laptop and Jenkins
ExpoQA 2017 Using docker to build and test in your laptop and JenkinsExpoQA 2017 Using docker to build and test in your laptop and Jenkins
ExpoQA 2017 Using docker to build and test in your laptop and Jenkins
 
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
 
Docking postgres
Docking postgresDocking postgres
Docking postgres
 
Continuous Integration with Docker on AWS
Continuous Integration with Docker on AWSContinuous Integration with Docker on AWS
Continuous Integration with Docker on AWS
 
Introduction To Docker
Introduction To DockerIntroduction To Docker
Introduction To Docker
 
Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned  Real-World Docker: 10 Things We've Learned
Real-World Docker: 10 Things We've Learned
 
Introduction to Docker at Glidewell Laboratories in Orange County
Introduction to Docker at Glidewell Laboratories in Orange CountyIntroduction to Docker at Glidewell Laboratories in Orange County
Introduction to Docker at Glidewell Laboratories in Orange County
 
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
eZ Publish 5: from zero to automated deployment (and no regressions!) in one ...
 
Workshop : 45 minutes pour comprendre Docker avec Jérôme Petazzoni
Workshop : 45 minutes pour comprendre Docker avec Jérôme PetazzoniWorkshop : 45 minutes pour comprendre Docker avec Jérôme Petazzoni
Workshop : 45 minutes pour comprendre Docker avec Jérôme Petazzoni
 

More from Adrian Otto

More from Adrian Otto (6)

What's really the difference between a VM and a Container?
What's really the difference between a VM and a Container?What's really the difference between a VM and a Container?
What's really the difference between a VM and a Container?
 
Build Your Own Open Source Cloud
Build Your Own Open Source CloudBuild Your Own Open Source Cloud
Build Your Own Open Source Cloud
 
OpenStack Magnum 2016-08-04
OpenStack Magnum 2016-08-04OpenStack Magnum 2016-08-04
OpenStack Magnum 2016-08-04
 
OpenStack Magnum
OpenStack MagnumOpenStack Magnum
OpenStack Magnum
 
7 Habits of Highly Effective Contirbutors
7 Habits of Highly Effective Contirbutors7 Habits of Highly Effective Contirbutors
7 Habits of Highly Effective Contirbutors
 
Docker for Multi-Cloud Apps
Docker for Multi-Cloud AppsDocker for Multi-Cloud Apps
Docker for Multi-Cloud Apps
 

Recently uploaded

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 

Recently uploaded (20)

GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 

Docker 102 - Immutable Infrastructure

  • 1. Docker 102 Immutable Infrastructure Presented by: Adrian Otto Prepared for: Docker Los Angeles Date: September 10, 2014
  • 2. Adrian Otto • Principal Architect, Rackspace • PTL, Solum • Chair, OpenStack Containers Team • Co-Chair, OASIS CAMP Technical Committee 2
  • 3. 3 Quick Review of Docker 101
  • 4. 4 Docker 101 Slides http://www.slideshare.net/adrianjotto/docker-101-38986794 Please view slides above for my overview of Docker
  • 6. Immutable [ih-myoo-tuh-buh l] adjective 1. Not mutable; unchangeable; changeless. Origin: 1375-1425; late Middle English < Latin immūtābilis. 6
  • 7. Immutable I - Mute - The - Bull 7
  • 8. What is Immutable Infrastructure? • Utopia – Applications are deployed, and code is never modified. – Configuration is never modified (in place) – Patches are never applied – Only administrative actions are “deploy” and “destroy”. 8
  • 9. Who Cares? • Rationale – Full Automation Means Consistency – Re-Deploy More Often – SHIP IT – $$$ 9
  • 10. How? • Any time you want to do a change to your app, redeploy. • Any time you want to change your data schema, migration script. 10
  • 12. Feature Flags • Assumes you control the code in the application • Wrap new features in conditions • Activate conditions in accordance with appropriate risk – By group – By user settings – By percentage of users • De-Activate as needed (no re-deploy needed!) 12
  • 13. Containerization with Docker • Source repository contains a Dockerfile • Build process produces a container • Inject configuration using ENV key/pair values • Use same container for test, stage, and prod 13
  • 14. Limiting Downtime • Green/Blue Deploy 1. Create live replica of database 2. Duplicate all application nodes with new code/config 3. Adjust routing (load balancer) to activate new code 14 App v1.0 App v1.0 App v1.1 App v1.1 Db v1.0 Db v1.1 LB
  • 15. Limiting Risk • Canary Deploy 1. Requires Feature Flags or Sticky LB Sessions 2. Back up your data 3. All nodes use the production database 4. Route new connections to new node(s) 15 App v1.0 LB App v1.0 Db v1.0 App v1.1
  • 16. When to Use Canary • No contract breaking changes to your data schema – Or, you have an object versioned database • You use feature flags • Impractical to test the feature outside production • Have a full backup of your data, and can restore 16
  • 17. When to Use Blue/Green • You are updating your data schema • You don’t have an object versioned database • You don’t have feature flags • Can test the feature outside production • Restoring from a backup is not practical (big data sets) – Plan for the worst case scenario: Oops, my feature blew up! 17
  • 19. Imperative and Declarative Imperative – Define the process – Sequenced steps – Usually serialized – Expressed as a script Examples – Shell scripts – Puppet scripts – Chef recipes Declarative – Define the outcome – Ordering possible – Good for parallel work – Expressed as a DSL Examples – Fig – Heat – Solum 19
  • 20. Tools to Help • Solum and OpenStack – Heat (HOT Files) • Jenkins • Ansible • SaltStack • Chef 20
  • 21. Immutable Infrastructure with Docker • Docker Public Registry • Private Registry – Run as a container (There be Dragons!) – Run with Glance Backend (OpenStack) – Run with Swift Backend (OpenStack) – Run with S3 Backend (AWS) • Docker Private Repos – Example: adrianotto/private – Not visible in the public registry – Only you can push/pull to/from the repo – 1 Private Repo is free – 5 private repos free for 2 months with promo code: docker-los-angeles – Allows for webhook integration – Can be shared with other users – Can be tagged 21
  • 23. Using a Private Repo [root@example~]# docker login! Username: h4x0r4u! Password: ! Email: example@example.com! [root@example~]# docker pull centos:centos6! [root@example~]# docker run -i -t centos:centos6 /bin/bash! bash-4.1# echo hello > hello.txt! bash-4.1# exit! [root@example~]# docker ps –a! CONTAINER ID IMAGE COMMAND CREATED STATUS…! f7485ea35f26 centos:centos6 /bin/bash 4 minutes ago Exited (0) 2…! [root@example~]# docker commit f7485ea35f26 h4x0r4u/private! 1898aef1c36014b3702c3532263a9064ba928b78a9b2ccf44a101c61028179cd! [root@example~]# docker images! REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE! h4x0r4u/private latest 1898aef1c360 3 seconds ago 212.7 MB! centos centos6 68eb857ffb51 1 day ago 212.7 MB! 23 Note: Private repos can only be seen by you
  • 24. Updating Base Images [root@example~]# docker images! REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE! centos centos6 b1bd49907d55 5 weeks ago 212.5 MB! centos centos7 b157b77b1a65 5 weeks ago 243.7 MB! centos latest b157b77b1a65 5 weeks ago 243.7 MB! [root@example~]# docker pull centos:centos6! 68eb857ffb51: Download complete ! 511136ea3c5a: Download complete ! 34e94e67e63a: Download complete ! [root@example~]# docker images! REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE! centos centos6 68eb857ffb51 1 day ago 212.7 MB! centos centos7 b157b77b1a65 5 weeks ago 243.7 MB! centos latest b157b77b1a65 5 weeks ago 243.7 MB! 24 Hint: Automate for evergreen environment
  • 25. 25