LinuxCommandLibrary

colima

Container runtimes for macOS and Linux with minimal setup.

TLDR

Start the daemon in the background

$ colima start
copy


Create a configuration file and use it
$ colima start --edit
copy


Start and setup containerd (install nerdctl to use containerd via nerdctl)
$ colima start --runtime containerd
copy


Start with Kubernetes (kubectl is required)
$ colima start --kubernetes
copy


Customize CPU count, RAM memory and disk space (in GiB)
$ colima start --cpu [number] --memory [memory] --disk [storage_space]
copy


Use Docker via Colima (Docker is required)
$ colima start
copy


List containers with their information and status
$ colima list
copy


Show runtime status
$ colima status
copy

Copied to clipboard