-
Notifications
You must be signed in to change notification settings - Fork 0
OCI Layout Architecture
Mirrored from
docs/architecture/oci-layout.mdin the repository, 2026-08-05. The repo copy is authoritative for anything CI-cited (exact commands, workflow files, versions) — this page exists so the wiki is self-contained, but re-sync it from the source if the two drift.
The CLI validates an executable, creates a deterministic tar layer and
gzip stream, then writes the OCI image configuration, manifest, index,
and content-addressed blobs. A generated layout has this shape:
oci-image/
oci-layout # imageLayoutVersion 1.0.0
index.json # platform descriptor and image reference annotation
blobs/sha256/
<config digest>
<manifest digest>
<compressed layer digest>
The layer contains /app/service, /etc/ssl/certs/, /tmp/, and
/var/tmp/, plus one entry per -extra-file if any were given. The last
two directories are sticky writable directories; all other included
directories are 0755, and every file (the entrypoint and every extra
file) is 0555. The config specifies linux, amd64 or arm64, a
single compressed layer, its uncompressed diff_id, and User
65532:65532.
See also internal/layout for the verifier that
reads this shape back, and the
compatibility matrix for which
OS/architecture/runtime combinations actually consume it in CI.
© 2026 CYPT71
platform-factory
Core
- Architecture and OCI Layout
- Next-generation Architecture
- Architecture Decision Records
- Security Model
- Threat Model and Residual Risks
- Independent Security Review Process
- CLI Reference
- Project Configuration and Dependency Freezing
- mTLS Configuration
- Meine Graal
CI/CD
Running an image
- Production Adoption Guide
- Dockerfile Consumer
- Local Dev (Podman/macOS)
- MicroVM Support
- MicroVM Administration
- Large-image streaming
Operating