Install docker engine on macOS without having to also install docker desktop:
Start with:
brew install colima docker docker-compose docker-buildxNext, create this directory:
Install docker engine on macOS without having to also install docker desktop:
Start with:
brew install colima docker docker-compose docker-buildxNext, create this directory:
If you have fzf installed (and you should 😊) you can create a fuzzy search tool, with line numbers, to examine text files. I call this "meow".
Add this to your .zshrc or bashrc file:
# Alias to "cat" files with fuzzy search and line numbers.
meow() {
cat -n "$@" | fzf
}