Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 235 Bytes

runc.md

File metadata and controls

10 lines (8 loc) · 235 Bytes

Create a container bundle

mkdir -p mycontainer/rootfs docker export $(docker create alpine) | tar -C mycontainer/rootfs -xvf -

Generate a default config.json

cd mycontainer runc spec

Run the container

sudo runc run mycontainer