Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing links #1178

Merged
merged 1 commit into from
Aug 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/en/container-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ tags: ["", "", ""]

## What it is

A container image is an immutable, static file containing the dependencies for the creation of a container.
A container image is an immutable, static file containing the dependencies for the creation of a [container](/container/).
These dependencies may include a single executable binary file, system libraries,
system tools, environment variables, and other required platform settings.
Container images result from an application's containerization and are typically stored in container registries,
Container images result from an application's [containerization](/containerization/) and are typically stored in container registries,
where they can be downloaded and run as an isolated process using a Container Runtime Interface (CRI).
A container image framework must follow the standard schema defined by the Open Container Initiative (OCI).

Expand All @@ -21,10 +21,10 @@ Any misconfiguration between environments is problematic and often leads to down
An application's environment needs to be repeatable and well-defined;
otherwise, the chance of environment-related bugs increases.
When application environments are configured inadequately or inaccurate,
horizontal and vertical scaling of applications becomes challenging.
[horizontal](/horizontal-scaling/) and [vertical](/vertical-scaling/) scaling of applications becomes challenging.

## How it helps

Container images bundle an application with any of its runtime dependencies, such as an application server.
This provides consistency across all environments, including a developer's machine.
Container images can be used to instantiate as many containers as needed, allowing for greater scalability.
Container images can be used to instantiate as many containers as needed, allowing for greater [scalability](/scalability/).