Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 515 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 515 Bytes

Socker

A tiny container runtime currentry implementating the OCI runtime-spec in Rust, similar to runc.

How to try

  1. Build socker by yourself
  2. Prepare rootfs
docker export $(docker create ubuntu) | tar -C rootfs -xvf -
  1. Run socker
socker config.json

How to build

git clone https://github.com/appare45/socker.git
cd socker
cargo build --release
image