1
0
mirror of https://github.com/containers/youki synced 2024-11-09 19:25:15 +01:00
youki/Vagrantfile

22 lines
712 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "fedora/33-cloud-base"
config.vm.synced_folder '.', '/vagrant', disabled: true
config.vm.provision "shell", inline: <<-SHELL
set -e -u -o pipefail
yum install -y git gcc docker systemd-devel dbus-devel
grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0"
service docker start
SHELL
config.vm.provision "shell", privileged: false, inline: <<-SHELL
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
echo "export PATH=$PATH:$HOME/.cargo/bin" >> ~/.bashrc
git clone https://github.com/containers/youki
SHELL
end