Container Image - CI/CD用語集の定義
Container image とは、アプリケーションをその runtime、ライブラリ、ファイルシステムとともにまとめた読み取り専用でレイヤー化されたパッケージで、container runtime があればどこでも同じように動作します。
Container image とは、アプリケーションをその runtime、ライブラリ、ファイルシステムとともにまとめた読み取り専用でレイヤー化されたパッケージで、container runtime があればどこでも同じように動作します。
Container image とは、アプリケーションをその runtime、ライブラリ、ファイルシステムとともにまとめた読み取り専用でレイヤー化されたパッケージで、container runtime があればどこでも同じように動作します。
CI で重要な理由
CI pipeline は container image を一度ビルドし、まったく同じ image を test、staging、production で再利用するため、「自分のマシンでは動く」というずれがなくなります。
関連ガイド
Base Image - CI/CD Glossary DefinitionBase Image: A base image is the starting image a Dockerfile builds on top of, named in the first `FROM` instr…
Image Layer - CI/CD Glossary DefinitionImage Layer: An image layer is a single filesystem diff created by one build instruction. Layers stack to for…
Image Tag - CI/CD Glossary DefinitionImage Tag: An image tag is a human-readable label attached to an image in a repository (for example `myapp:1.…
Container Runtime - CI/CD Glossary DefinitionContainer Runtime: A container runtime is the software that creates and runs containers from images, managing…