1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-04-19 08:34:09 +02:00

fix build error in vagrant

This commit is contained in:
zido 2021-09-23 16:48:43 +08:00
parent fb44f92434
commit 3428514d2c

4
Vagrantfile vendored
View File

@ -11,8 +11,8 @@ Vagrant.configure("2") do |config|
end
config.vm.provision "shell", inline: <<-SHELL
set -e -u -o pipefail
yum update
yum install -y git gcc docker systemd-devel dbus-devel
yum update -y
yum install -y git gcc docker systemd-devel dbus-devel libseccomp-devel
grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0"
service docker start
SHELL