DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Last call! Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workloads.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

  1. DZone
  2. Refcards
  3. Getting Started With Container Registries
refcard cover
Refcard #340

Getting Started With Container Registries

Manage Your Container Images Effectively

Container registries serve as libraries to store and access third-party container images required during the build phase of the SDLC and the images produced for deployment to test, staging, and production environments. While public container registries are accessible and convenient, private registries can better integrate into existing CI/CD workflows, offer greater control over access and security, as well as help ensure build repeatability and reliability. This Refcard covers key container concepts and terminology; common use cases; and guidelines for container registry configuration, operation, security, and storage.

Download Refcard
Free PDF for Easy Reference
refcard cover

Written By

author avatar Melissa McKay
Developer Advocate, JFrog
Table of Contents
► Introduction ► What Are Container Registries? ► Key Image and Container Registry Concepts ► Using Container Registries in the Real World ► Getting Started With Container Registries ► Conclusion and Additional Resources
Section 1

Introduction

The explosion of the use of containers for software development and deployment brings about a need for proper storage and organization of the images these containers are based on. There are multiple container registry solutions available with a variety of feature sets to consider. Some solutions are more comprehensive than others, and it’s important to understand the purpose of container registries, how they function, and ways they can best suit an organization's needs.

Section 2

What Are Container Registries?

Container registries serve as libraries for third-party container images required during the build phase of a software development pipeline, as well as images produced that are intended for deployment to test, staging, and production environments.

Public container registries like Docker Hub play a valuable role in the container ecosystem by providing a way to make container images easily available to developers. Popular images include those for applications and services commonly used in microservices architectures, such as databases (postgres, mysql), messaging solutions (redis), and programming language environments (python, golang, openjdk). While relying solely on Docker Hub for these images is convenient, there are some important reasons to consider storing the container images that your organization relies on in an internal container registry solution.

There are two types of container images you will use in your projects:

  1. Images you produce
  2. Images that are dependencies of the images you produce

Just like other third-party packages and dependencies your software requires to build and operate successfully, your container images are also essential building blocks that should be organized and managed carefully. Losing a dependency required by your software development and deployment pipelines to run and complete successfully equates to loss of development time and increased risk that your application or service will not function as intended. Also, frequently re-building your code is prone to error — there is no guarantee that you will get a consistent build each time, whereas your binaries are immutable.

Choosing a reliable, secure container registry and integrating it into your pipelines is a critical step to mitigating interruptions of your build processes and will increase your confidence in your deployments.


This is a preview of the Getting Started With Container Registries Refcard. To read the entire Refcard, please download the PDF from the link above.

Section 3

Key Image and Container Registry Concepts

The following terminology is essential to know when discussing containers and their source images. Also, understanding the concepts around image format and how images are stored on your filesystem will allow you to make better decisions regarding managing the sharing and distribution of your container images.

Container Terminology

Container

A container is the encapsulation of an application and all of its required dependencies and system resources running within an isolated “space” on a host machine. Containers share the host machine’s operating system and kernel, but they utilize low-level features that allow isolation between processes running inside the container and other processes on the same host. Containers enable the portability of an application or service between different computing environments without the risk of changes in behavior because of differing dependency sets.

Container Image

A container image is an immutable, executable binary that provides all of the dependencies and configuration required for creating a container. It encompasses all of the environment configuration and explicitly defines all of the resources to which a container will have access after it is launched. Images can be thought of as a snapshot of a complete filesystem stored as an archive that can be unpacked and run within the context of a collection of root filesystem changes.

Using Docker (which requires the installation of Docker Engine) is a common way of building container images. Building images with Docker also requires a text file called a Dockerfile, a file that serves as the blueprint for a container that explicitly defines the image environment, dependencies, and other configurations. However, there are other options available that use existing Dockerfiles or an equivalent of a Dockerfile to build images. Some examples are buildah, orca-build, img, and kaniko.

Base Image

Images can inherit from other images, and many are built from an initial set of dependencies and configurations that come from a base image. Commonly used base images can describe a base operating system (e.g., ubuntu, alpine, centos) and/or include a specific package or set of dependencies (e.g., java, swift, bash). A base image is not based on any other image and uses the word scratch in the first line of the image’s Dockerfile.

Example: Base Image Dockerfile for alpine

Dockerfile
 




xxxxxxxxxx
1


 
1
FROM scratch
2
ADD alpine-minirootfs-3.12.1-x86_64.tar.gz /
3
CMD ["/bin/sh"]



An image that is based on another will specify the image it inherits from, also known as a parent image, in the first line of the Dockerfile. A parent image is not required to be a base image.

Dockerfile
 




xxxxxxxxxx
1


 
1
FROM ubuntu


Image ID

When an image is built, it is assigned a unique ID in the form of an SHA-256 hex digest calculated from the contents of the image.

Image Tag

An image tag is an alias that is used to point to a specific image binary within an image repository. The tag can be set to any text but is generally used to indicate a specific version of a named image. A tag is unique to an image binary; however, an image binary can have multiple tags. This capability is commonly used along with semantic versioning to tag the latest minor and/or patch version as the latest major version available. For example, the latest binary of an image could potentially have the tags :3, :3.2, :3.2.1, and :latest, similar to the figure below:

Figure 1: Image tags


This is a preview of the Getting Started With Container Registries Refcard. To read the entire Refcard, please download the PDF from the link above.

Section 4

Using Container Registries in the Real World

Development Pipelines

If you are using Docker, where you store and access your container images is often an afterthought because of how easy it is to simply use the default settings of Docker Engine. If a container registry is not specified in a Dockerfile, or when requesting or sharing an image (e.g., docker pull <image-name>), then the registry is assumed to be Docker Hub. This is an important fact to remember, especially when setting up your continuous integration and development/deployment (CI/CD) pipelines!

Think about how often developers will pull images from the public registry to build and run an application or service locally. On top of that, every time your application is triggered to build in your Continuous Integration (CI) server, images will potentially be pulled from the registry. As shown in Figure 2, your requests for the images you rely on may not reach the intended remote registry for any number of reasons (e.g., unavailability of the network or of the remote service).

Figure 2: Remote registry requests

Docker has a clever mechanism for caching images locally once they have been pulled. This will save you the bandwidth cost of repeatedly pulling the same image over and over. However, to guarantee build repeatability and to ensure that all dependencies are accounted for, many CI systems are set up to start a build from scratch. Aside from that, any new machine instance that does not have an accessible local Docker cache will be required to pull source images from a registry. This could potentially include new development, test, staging, and production systems.


This is a preview of the Getting Started With Container Registries Refcard. To read the entire Refcard, please download the PDF from the link above.

Section 5

Getting Started With Container Registries

Set up Your Container Registry

The technical details of setting up a container registry will be different depending on which solution you choose to implement. Regardless of the solution you choose, bear in mind the following guidelines.

Access and Security

Identify any network requirements or security zones that may affect the location of your container registry. Ensure that developers can access the registry from their local machines, other development or deployment environments, and separate tools (e.g., CI server, automated deployment system).

Health

Observe the health of your container registry regularly. A monitoring solution can send alerts when you approach or exceed storage space thresholds and collect data around how often images are pulled and from where. This data will provide insight into whether to plan for scaling or replication of the registry.


This is a preview of the Getting Started With Container Registries Refcard. To read the entire Refcard, please download the PDF from the link above.

Section 6

Conclusion and Additional Resources

Storing and accessing container images responsibly will help mitigate and prevent some of the known complications and missteps learned from experience. Use the information in this Refcard to make an educated decision about your choice of container registry and how your organization manages container images essential to your software projects. The following references will help you stay up to date on important changes and progress made around image formats that may impact your container registry compatibility:

  • https://docs.docker.com/
  • https://opencontainers.org/

This is a preview of the Getting Started With Container Registries Refcard. To read the entire Refcard, please download the PDF from the link above.

Like This Refcard? Read More From DZone

related article thumbnail

DZone Article

How To Build Docker Images for Windows Desktop Applications
related article thumbnail

DZone Article

Why You Should Use COPY Instead of ADD When Building Docker Images
related article thumbnail

DZone Article

Parameters to Measure in Chaos Engineering Experiments
related article thumbnail

DZone Article

Secrets Sprawl and AI: Why Your Non-Human Identities Need Attention Before You Deploy That LLM
related refcard thumbnail

Free DZone Refcard

Kubernetes Monitoring Essentials
related refcard thumbnail

Free DZone Refcard

Kubernetes Multi-Cluster Management and Governance
related refcard thumbnail

Free DZone Refcard

Getting Started With Kubernetes
related refcard thumbnail

Free DZone Refcard

Getting Started With Serverless Application Architecture

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: