cc-oci-runtime icon indicating copy to clipboard operation
cc-oci-runtime copied to clipboard

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

Open mcastelino opened this issue 8 years ago • 1 comments

Tested on Ubuntu 16.04

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

  • Create the rootfs for the bundle
mkdir $HOME/mycontainer
cd $HOME/mycontainer
sudo docker pull busybox
sudo docker export $(sudo docker create busybox) | tar -C rootfs -xvf -
  • Create the spec file config.json for the bundle runc spec

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

  • Start the container
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"

mcastelino avatar Sep 08 '16 18:09 mcastelino

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

jodh-intel avatar Sep 19 '16 16:09 jodh-intel