1
0
mirror of https://github.com/containers/youki synced 2024-09-19 18:37:40 +02:00

Add necessary libraries in vagrant provision

This commit is contained in:
tiqwab 2021-08-24 08:50:28 +09:00
parent 414fa3a448
commit bac10199c7

2
Vagrantfile vendored
View File

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