Skip to content

Instantly share code, notes, and snippets.

@jancimajek
Last active May 18, 2023 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jancimajek/92a5ba8908b08c8e7d89c24996b18e43 to your computer and use it in GitHub Desktop.
Save jancimajek/92a5ba8908b08c8e7d89c24996b18e43 to your computer and use it in GitHub Desktop.
Install Docker with alternative runtime Colima via brew

Install Docker with alternative runtime Colima via brew

# Install docker, compose & buildx
brew install docker
brew install docker-compose
brew install docker-buildx

# Link plugins
mkdir -p ~/.docker/cli-plugins
ln -sfn /usr/local/opt/docker-buildx/bin/docker-buildx ~/.docker/cli-plugins/docker-buildx
ln -sfn /usr/local/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose

# Install & run alternative runtime - https://apple.stackexchange.com/a/439938/246537
brew install colima
colima start

# Test docker works:
docker info
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment