Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mitake/0793dd07bef3d8170fe979774db829c3 to your computer and use it in GitHub Desktop.
Save mitake/0793dd07bef3d8170fe979774db829c3 to your computer and use it in GitHub Desktop.
runC Example

Reference Getting Started with runC

mkdir runc
cd runc
docker pull busybox
docker export $(docker create busybox) > busybox.tar
mkdir rootfs
tar -C rootfs -xf busybox.tar
runc spec > container.json
sudo runc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment