Crates.io | oci2git |
lib.rs | oci2git |
version | |
source | src |
created_at | 2025-05-03 13:11:02.049991+00 |
updated_at | 2025-05-07 21:44:00.016263+00 |
description | A tool to convert OCI images to Git repositories |
homepage | https://github.com/virviil/oci2git |
repository | https://github.com/virviil/oci2git |
max_upload_size | |
id | 1658767 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A Rust application that converts container images (Docker, etc.) to Git repositories. Each container layer is represented as a Git commit, preserving the history and structure of the original image.
When troubleshooting container issues, you can use Git's powerful diffing capabilities to identify exactly what changed between any two layers. By running git diff
between commits, engineers can see precisely which files were added, modified, or deleted, making it much easier to understand the impact of each Dockerfile instruction and locate problematic changes.
Using git blame
, developers can quickly determine which layer introduced a specific file or line of code. This is particularly valuable when diagnosing issues with configuration files or dependencies. Instead of manually inspecting each layer, you can immediately trace the origin of any file back to its source layer and corresponding Dockerfile instruction.
OCI2Git enables you to follow a specific file's journey throughout the container image's history. You can observe when a file was initially created, how it was modified across layers, and if/when it was eventually removed. This comprehensive view helps understand file evolution without having to manually track changes across potentially dozens of layers.
To track the history of a file in your container image — including when it first appeared, was changed, or deleted — you can use these Git commands after conversion:
# Full history of a file (including renames)
git log --follow -- /rootfs/my/file/path
# First appearance (i.e. creation) - see which layer introduced the file
git log --diff-filter=A -- /rootfs/my/file/path
# All changes made to the file (with diffs)
git log -p --follow -- /rootfs/my/file/path
# When the file was deleted
git log --diff-filter=D -- /rootfs/my/file/path
# Show short commit info (concise layer history)
git log --follow --oneline -- /rootfs/my/file/path
These commands make it simple to trace any file's complete history across container layers without the complexity of manually extracting and comparing layer tarballs.
Sometimes the most insightful comparisons come from examining changes across multiple non-consecutive layers. With OCI2Git, you can use Git's comparison tools to analyze how components evolved over multiple build stages, identifying patterns that might be invisible when looking only at adjacent layers.
By using git checkout
to move to any specific commit, you can examine the container filesystem exactly as it existed at that layer. This allows developers to inspect the precise state of files and directories at any point in the image's creation process, providing invaluable context when debugging or examining container behavior.
# Clone the repository
git clone https://github.com/virviil/oci2git.git
cd oci2git
# Install locally
cargo install --path .
cargo install oci2git
oci2git [OPTIONS] <IMAGE>
Arguments:
<IMAGE>
Image name to convert (e.g., 'ubuntu:latest') or path to tarball when using the tar engine
Options:
-o, --output <o>
Output directory for Git repository [default: ./container_repo]
-e, --engine <ENGINE>
Container engine to use (docker, nerdctl, tar) [default: docker]
-h, --help
Print help information
-V, --version
Print version information
Environment Variables:
TMPDIR
Set this environment variable to change the default location used for intermediate data processing. This is platform-dependent (e.g., TMPDIR
on Unix/macOS, TEMP
or TMP
on Windows).
Using Docker engine (default):
oci2git -o ./ubuntu-repo ubuntu:latest
Using an already downloaded image tarball:
oci2git -e tar -o ./ubuntu-repo /path/to/ubuntu-latest.tar
The tar engine expects a valid OCI format tarball, which is typically created with docker save
:
# Create a tarball from a local Docker image
docker save -o ubuntu-latest.tar ubuntu:latest
# Convert the tarball to a Git repository
oci2git -e tar -o ./ubuntu-repo ubuntu-latest.tar
This will create a Git repository in ./ubuntu-repo
containing:
Image.md
- Complete metadata about the image in Markdown formatrootfs/
- The filesystem content from the containerThe Git history reflects the container's layer history:
Image.md
file with full metadatarepository/
├── .git/
├── Image.md # Complete image metadata
└── rootfs/ # Filesystem content from the container
MIT