We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95cf095 commit 043ec7fCopy full SHA for 043ec7f
centos-vm/Dockerfile centos-vm-libvirt/Dockerfilecentos-vm/Dockerfile renamed to centos-vm-libvirt/Dockerfile
centos-vm/Vagrantfile centos-vm-libvirt/Vagrantfilecentos-vm/Vagrantfile renamed to centos-vm-libvirt/Vagrantfile
centos-vm-virtualbox/Dockerfile
@@ -0,0 +1,9 @@
1
+FROM centos:7
2
+
3
+RUN yum -y install rsync openssh-clients virtualbox libguestfs-tools-c \
4
+ ruby-devel gcc \
5
+ && yum -y install \
6
+ https://releases.hashicorp.com/vagrant/2.2.2/vagrant_2.2.2_x86_64.rpm \
7
+ && vagrant box add centos/7 --provider virtualbox
8
9
+COPY Vagrantfile /centos-vm-virtualbox/
centos-vm-virtualbox/Vagrantfile
@@ -0,0 +1,3 @@
+Vagrant.configure(2) do |config|
+ config.vm.box = "centos/7"
+end
0 commit comments