mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-19 01:43:18 +08:00
* Update query.md * Update ionice.md * Update cpupower.md * Update colima.md * Update ipptool.md * Update npm-token.md * Update packtpub.md * Update gcrane-completion.md * Update mimikatz.md * Update git-force-clone.md
33 lines
698 B
Markdown
33 lines
698 B
Markdown
# colima
|
|
|
|
> Container runtimes for macOS and Linux with minimal setup.
|
|
> More information: <https://github.com/abiosoft/colima>.
|
|
|
|
- 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}}`
|
|
|
|
- List containers with their information and status:
|
|
|
|
`colima list`
|
|
|
|
- Show runtime status:
|
|
|
|
`colima status`
|