Cambiar cpu y memoria en colima

Enviado por webtematica el

https://stackoverflow.com/questions/73844463/colima-increase-docker-image-size-limit

 

Ver status de colima

 

colima list

 

Colima - Customizing the VM

The default VM created by Colima has 2 CPUs, 2GiB memory and 60GiB storage.

The VM can be customized either by passing additional flags to colima start. e.g. --cpu, --memory, --disk, --runtime. Or by editing the config file with colima start --edit.

NOTE: disk size cannot be changed after the VM is created. From v0.5.3, disk size can be increased

Customization Examples

create VM with 1CPU, 2GiB memory and 10GiB storage.

colima start --cpu 1 --memory 2 --disk 10

modify an existing VM to 4CPUs and 8GiB memory.

colima stop
colima start --cpu 4 --memory 8

resize storage to 100 GB.

colima stop
colima start --disk 100