Skip to content

Instantly share code, notes, and snippets.

@lokeshrangineni
lokeshrangineni / dockerWithColima.sh
Last active January 16, 2024 21:45
Docker Colima without docker desktop cheat sheet
### Setting up docker and colima.
brew install colima
brew install docker docker-compose
mkdir -p ~/.docker/cli-plugins
# symlink the docker-compose command into that new folde
ln -sfn $(brew --prefix)/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose
# Need this to build some containers.
brew install docker-Buildx
#symlink it to the cli-plugins
ln -sfn $(brew --prefix)/opt/docker-buildx/bin/docker-buildx ~/.docker/cli-plugins/docker-buildx