intel / cc-oci-runtime

OCI (Open Containers Initiative) compatible runtime for Intel® Architecture
GNU General Public License v2.0
417 stars 59 forks source link

Documentation: Add details on running standalone cc-oci-runtime #239

Open mcastelino opened 8 years ago

mcastelino commented 8 years ago

Tested on Ubuntu 16.04

https://github.com/opencontainers/runc#creating-an-oci-bundle

mkdir $HOME/mycontainer
cd $HOME/mycontainer
sudo docker pull busybox
sudo docker export $(sudo docker create busybox) | tar -C rootfs -xvf -

Note: You may need to build runc https://github.com/opencontainers/runc#building if you do not have it on your system.

name=foo
pidfile=/tmp/cor.pid
logfile=/tmp/cor.log
bundle_dir=$HOME/mycontainer/

sudo cc-oci-runtime -d --log "$logfile" --log-format json create --bundle "$bundle_dir" --console $(tty) --pid-file "$pidfile" "$name"
sudo cc-oci-runtime --log "$logfile" --log-format json start "$name"
jodh-intel commented 8 years ago

272, which fixes #265, will now auto-create a bundle (with a few caveats).