This commit is contained in:
paramah
2022-11-20 14:05:28 +01:00
parent 24f41808af
commit 1cac97d013
3 changed files with 20 additions and 0 deletions

1
Vagrantfile vendored
View File

@ -44,6 +44,7 @@ Vagrant.configure(2) do |config|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get -y update
sudo apt-get -y install docker-ce docker-ce-cli containerd.io docker-compose-plugin
if [ -f /vagrant/join.sh ]; then /vagrant/join.sh; else echo "/vagrant/join.sh not found!"; fi
SHELL
end
end