Skip to content
This repository was archived by the owner on May 10, 2023. It is now read-only.

Vagrant fixes #34

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ Vagrant.configure(2) do |config|
sudo apt-get install -y curl python3-pip libffi-dev
curl -fsSL https://get.docker.com | sudo sh
sudo usermod -aG docker vagrant
pip3 install -U "bcrypt<4.0.0"
pip3 install docker-compose
SHELL

Expand All @@ -83,6 +84,12 @@ Vagrant.configure(2) do |config|
apt-get install -y avahi-daemon avahi-discover libnss-mdns
SHELL

# Install yq
config.vm.provision "shell", inline: <<-SHELL
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/${BINARY}.tar.gz -O - |\
tar xz && mv ${BINARY} /usr/bin/yq
SHELL

# Install Umbrel
config.vm.provision "shell", inline: <<-SHELL
apt-get install -y fswatch rsync jq git
Expand Down