rkt
rkt, pronounced "rocket," is an open-source container runtime for Linux that was developed by CoreOS and released in 2014. It was designed as a secure, standards-based alternative to Docker, emphasizing a modular architecture, reproducible builds, and strong image provenance. rkt implements the App Container (appc) specifications and originally used App Container Images (ACI) as its primary image format.
Workloads in rkt are run as pods containing one or more applications. Images are referenced as ACIs
For image sources, rkt originally focused on appc/ACI and provided tools to convert Docker images to the
Over time, rkt's development slowed as other runtimes such as Docker, containerd, and CRI-O gained prominence.
---