Containerisierung (EN)

Technology

Technology for running applications in isolated environments called containers

Architecture

flowchart LR   A[Host operating system] --> B[Container runtime]   B --> C[Docker container]   B --> D[Kubernetes pod]   D --> E[Application]   D --> F[Dependencies]   C --> G[Isolated processes]   C --> H[File system]   C --> I[Network stack] 

In context

  • Typically used together with orchestration tools like Kubernetes or Docker Swarm
  • Related to: Virtualization, Microservices, CI/CD pipelines
  • Example use case: Deployment of web applications in isolated environments with consistent runtime properties
Quelle: AI Generated