From 2b31b3c795c294ba94b73636d528dbed3f49d3ae Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Thu, 30 Dec 2021 09:43:25 -0700 Subject: [PATCH] Add module for docker-related tools --- home/.config/configstore/update-notifier-npm.json | 4 ++++ install.sh | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 home/.config/configstore/update-notifier-npm.json diff --git a/home/.config/configstore/update-notifier-npm.json b/home/.config/configstore/update-notifier-npm.json new file mode 100644 index 0000000..7fa1853 --- /dev/null +++ b/home/.config/configstore/update-notifier-npm.json @@ -0,0 +1,4 @@ +{ + "optOut": false, + "lastUpdateCheck": 1640879021994 +} \ No newline at end of file diff --git a/install.sh b/install.sh index 53e36cc..9a6703f 100755 --- a/install.sh +++ b/install.sh @@ -134,6 +134,11 @@ function __install_configs() { popd >/dev/null } +function __install_docker() { + __install_with brew awscli aws + __install_with brew derailed/k9s/k9s k9s +} + function __install_gcc() { __install_with brew gcc }