| runc(8) | System Manager's Manual | runc(8) |
runc - Open Container Initiative runtime
runc [global-option ...] command [command-option ...] [argument ...]
runc is a command line client for running applications packaged according to the Open Container Initiative (OCI) format and is a compliant implementation of the Open Container Initiative specification.
runc integrates well with existing process supervisors to provide a production container runtime environment for applications. It can be used with your existing process monitoring tools and the container will be spawned as a direct child of the process supervisor.
Containers are configured using bundles. A bundle for a container is a directory that includes a specification file named config.json and a root filesystem. The root filesystem contains the contents of the container.
To run a new instance of a container:
# runc run [ -b bundle ] container-id
Where container-id is your name for the instance of the container that you are starting. The name you provide for the container instance must be unique on your host.
Providing the bundle directory using -b is optional. The default value for bundle is the current directory.
These options can be used with any command, and must precede the command.
runc-checkpoint(8), runc-create(8), runc-delete(8), runc-events(8), runc-exec(8), runc-kill(8), runc-list(8), runc-pause(8), runc-ps(8), runc-restore(8), runc-resume(8), runc-run(8), runc-spec(8), runc-start(8), runc-state(8), runc-update(8).