diff --git a/Vagrantfile b/Vagrantfile index 0741640..355d387 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -12,4 +12,13 @@ Vagrant.configure(2) do |config| config.vagrant.plugins = "vagrant-docker-compose" config.vm.provision :docker config.vm.provision :docker_compose + + # Install Umbrel + config.vm.provision "shell", inline: <<-SHELL + apt-get update + apt-get install -y git + curl "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.3-beta/install-box.sh" | sh + REGTEST=1 ./configure-box.sh + sudo chown -R 1000:1000 lnd/ bitcoin/ + SHELL end