Skip to content

Commit

Permalink
feat: add docker desktop and colima apps
Browse files Browse the repository at this point in the history
  • Loading branch information
YasminTeles committed Jun 10, 2024
1 parent 0334794 commit 0f0ebeb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: help check_clean del ssh backup github check-scripts
.PHONY: help check_clean del ssh backup github colima check-scripts

help: ## Show help.
@printf "A set of environment management commands.\n"
Expand Down Expand Up @@ -35,6 +35,11 @@ github: ## Clone all projects of a username at once in Github.
cd ~/Projects && gh repo list $$owner --limit 4000 --no-archived --topic $$topic | while read -r repository _; do gh repo clone $$repository ; done
@echo "Check the Projects folder to view all cloned projects."

colima: ## Setting up Colima and create a docker compose plugin.
@echo '{"credsStore":"osxkeychain"}' > ~/.docker/config.json
@mkdir -p ~/.docker/cli-plugins
@ln -sfn $(brew --prefix)/opt/docker-compose/bin/docker-compose ~/.docker/cli-plugins/docker-compose

check-scripts: ## Check the shell script.
@echo "Checking the shell script..."
@shellcheck *.sh
3 changes: 3 additions & 0 deletions brew/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ brew "thefuck"
brew "zoxide"

# Docker
cask "docker"
brew "colima"

brew "docker"
brew "docker-compose"
brew "docker-credential-helper"
Expand Down

0 comments on commit 0f0ebeb

Please sign in to comment.