From 1f34db2aa9973fea57ff1742768a5ab7fd7382f5 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 10 Jul 2020 20:23:06 +0700 Subject: [PATCH] Install Vagrant plugins on init --- umbrel-dev | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/umbrel-dev b/umbrel-dev index c9b25bc..422207f 100755 --- a/umbrel-dev +++ b/umbrel-dev @@ -99,6 +99,12 @@ if [[ "$command" = "init" ]]; then echo "Creating Vagrantfile..." cp "$(get_script_location)/Vagrantfile" . + echo + vagrant plugin install vagrant-vbguest + echo + vagrant plugin install vagrant-docker-compose + + echo echo "Cloning container repositories..." for ((i = 0; i < ${#repos[@]}; i++)); do repo="${repos[$i]}"