1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-05 07:06:14 +02:00

Merge pull request #323 from zidoshare/fix-vagrant-build-error

fix build error in vagrant
This commit is contained in:
utam0k 2021-09-23 17:55:32 +09:00 committed by GitHub
commit ae4b1974fe
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

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