From a33c6a09f032e8d876a3b883b9198ea7a06869d9 Mon Sep 17 00:00:00 2001 From: 0x44 0x46 <2424+dfischer@users.noreply.github.com> Date: Wed, 13 Mar 2024 22:09:36 -0700 Subject: [PATCH] colima: add page (#12162) * colima: add page --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> --- pages/common/colima.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/colima.md diff --git a/pages/common/colima.md b/pages/common/colima.md new file mode 100644 index 0000000000..ffafaea9c1 --- /dev/null +++ b/pages/common/colima.md @@ -0,0 +1,36 @@ +# colima + +> Container runtimes for macOS and Linux with minimal setup. +> More information: . + +- Start the daemon in the background: + +`colima start` + +- Create a configuration file and use it: + +`colima start --edit` + +- Start and setup containerd (install `nerdctl` to use containerd via `nerdctl`): + +`colima start --runtime containerd` + +- Start with Kubernetes (`kubectl` is required): + +`colima start --kubernetes` + +- Customize CPU count, RAM memory and disk space (in GiB): + +`colima start --cpu {{number}} --memory {{memory}} --disk {{storage_space}}` + +- Use Docker via Colima (Docker is required): + +`colima start` + +- List containers with their information and status: + +`colima list` + +- Show runtime status: + +`colima status`