Article · Wikipedia archive · Last revised May 27, 2026

Containerization (computing)

In software engineering, containerization is operating-system-level virtualization or application-level virtualization over multiple resources so that software applications can run in isolated user spaces called containers in any cloud or non-cloud environment, regardless of type or vendor. The term "container" has different meanings in different contexts, and it is important to ensure that the intended definition aligns with the audience's understanding.

Last revised
May 27, 2026
Read time
≈ 4 min
Length
946 w
Citations
11
Source
Screenshot of Podman Desktop showing a terminal of container
Podman is an example of container manager source ↗

In software engineering, containerization is operating-system-level virtualization or application-level virtualization over multiple resources so that software applications can run in isolated user spaces called containers in any cloud or non-cloud environment, regardless of type or vendor.1 The term "container" has different meanings in different contexts, and it is important to ensure that the intended definition aligns with the audience's understanding.23

Usage

Each container is basically a fully functional and portable cloud or non-cloud computing environment surrounding the application and keeping it independent of other environments running in parallel.4 Individually, each container simulates a different software application and runs isolated processes5 by bundling related configuration files, libraries and dependencies.6 But, collectively, multiple containers share a common operating system kernel (OS).7

In recent times, containerization technology has been widely adopted by cloud computing platforms like Amazon Web Services, Microsoft Azure, Google Cloud Platform, and IBM Cloud.8 Containerization has also been pursued by the U.S. Department of Defense as a way of more rapidly developing and fielding software updates, with first application in its F-22 air superiority fighter.9

History

The concept of containerization in computing originated from early operating system–level isolation mechanisms. One of the earliest implementations was the chroot system call introduced in Version 7 Unix in 1979, which changed the apparent root directory for a process and its children, providing a basic form of filesystem isolation.10

In the early 2000s, more advanced forms of operating system–level virtualization were developed. FreeBSD introduced "jails" in 2000, which extended isolation by restricting processes to a subset of system resources. Around the same time, Solaris introduced "zones" (also known as Solaris Containers), providing similar capabilities with resource management and isolation features.

Linux later incorporated comparable functionality through kernel features such as namespaces and control groups (cgroups), which enabled isolation of process IDs, network stacks, filesystems, and resource allocation. These features formed the foundation for Linux Containers (LXC), which provided a userspace interface for managing containers.

The widespread adoption of containerization accelerated with the release of Docker in 2013, which introduced a standardized format for packaging applications and their dependencies, along with tooling for image distribution and container management.

Types of containers

  • OS containers
  • Application containers

Security issues

  • Because of the shared OS, security threats can affect the whole containerized system.
  • In containerized environments, security scanners generally protect the OS, but not the application containers, which adds unwanted vulnerability.

Container management, orchestration, clustering

Container orchestration or container management is mostly used in the context of application containers.11 Implementations providing such orchestration include Kubernetes and Docker swarm.

Container cluster management

Container clusters need to be managed. This includes functionality to create a cluster, to upgrade the software or repair it, balance the load between existing instances, scale by starting or stopping instances to adapt to the number of users, to log activities and monitor produced logs or the application itself by querying sensors. Open-source implementations of such software include OKD and Rancher. Quite a number of companies provide container cluster management as a managed service, like Alibaba, Amazon, Google, and Microsoft.

See also

See also

Further reading

Further reading

Journal articles

Books

References

References

  1. Scheepers, Mathijs Jeroen (2014). "Virtualization and Containerization of Application Infrastructure: A Comparison" (PDF). thijs.ai. Thijs Scheepers. S2CID 18129086. Archived from the original (PDF) on 2024-09-28. Retrieved 2025-09-01.
  2. Winn, Duncan C. E. (2017). Cloud Foundry: The Definitive Guide Develop, Deploy, and Scale. O'Reilly Media, Inc. ISBN 9781491932544.
  3. "Concepts: Containers". Kubernetes.io.
  4. "What is containerization?". www.redhat.com. RedHat. Archived from the original on 2021-05-08. Retrieved 2021-07-10.
  5. Hinck, Tim Maurer, Garrett; Hinck, Tim Maurer, Garrett. "Cloud Security: A Primer for Policymakers". Carnegie Endowment for International Peace. Retrieved 2021-07-10.{{cite web}}: CS1 maint: multiple names: authors list (link)
  6. Rubens, Paul (2017-06-27). "What are containers and why do you need them?". CIO. Retrieved 2021-07-10.
  7. "Containerization". www.ibm.com. Retrieved 2021-07-10.
  8. December 2019, Jonas P. DeMuro 18 (18 December 2019). "What is container technology?". TechRadar India. Retrieved 2021-07-10.{{cite web}}: CS1 maint: numeric names: authors list (link)
  9. "Flight Test Clears F-22 Fleet To Accept Third-Party Software". Aviation Week. 30 August 2022.
  10. "chroot(2)". man.freebsd.org. Retrieved 2026-05-05.
  11. "What is Container Orchestration? Definition & Related FAQs". Avi Networks. Retrieved 2024-04-29.