mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
a1f1d8ce6c
* docker.com/cli * modified: projects/docker.com/cli/package.yml * modified: projects/docker.com/cli/package.yml * docker context use colima & debug * --arch * context list * colima start with profile name * --very-verbose * modified: projects/docker.com/cli/package.yml * cat $HOME/.lima/colima/serial.log * Update package.yml * --runtime docker * --verbose * only ver * readme * -deps
31 lines
787 B
Markdown
31 lines
787 B
Markdown
# Running with Colima
|
|
Colima is a lightweight and straightforward command-line tool that simplifies the management of Docker on macOS. This guide will walk you through the steps to set up and run Docker using Colima.
|
|
|
|
|
|
## Starting Colima
|
|
|
|
To start Colima, simply execute:
|
|
|
|
```bash
|
|
colima start <name>
|
|
```
|
|
|
|
## Setting socket
|
|
`docker context use colima-<name>`
|
|
|
|
## Using Docker with Colima
|
|
|
|
Now that Colima is running, you can use Docker commands directly from your terminal just like you would with a regular Docker installation. For example, to pull and run a Docker container:
|
|
|
|
```bash
|
|
docker pull nginx
|
|
docker run -d -p 80:80 nginx
|
|
```
|
|
|
|
## Stopping Colima
|
|
|
|
When you're done using Docker with Colima, you can stop Colima and shut down Docker Desktop by running:
|
|
|
|
```bash
|
|
colima stop
|
|
``` |