Runc

Version: 1.3.2 Linux containers

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.

Installation Instructions

Linux

Download Runc
{
  "url": "{{ .SVar `.tool.runc.download.url` }}",
  "destination_folder": "{{ .PDownloads }}",
  "output_filename": "{{ .SVar `.tool.runc.download.filename` }}",
  "overwrite": false
}
Copy download to tool space
{
  "source": "{{ .PDownloads }}/{{ .SVar `.tool.runc.download.filename` }}",
  "destination": "{{ .PTools }}/runc/{{ .SVar `.tool.runc.download.version` }}/runc"
}
Make sure artefact is executable
{
  "path": "{{ .PTools }}/runc/{{ .SVar `.tool.runc.download.version` }}/runc",
  "permission_bits": 504
}

Binaries