Skip to content

Instantly share code, notes, and snippets.

@gnurag
Created March 16, 2018 11:54
Show Gist options
  • Save gnurag/d907135784f0b99e14c8dd1aad88b496 to your computer and use it in GitHub Desktop.
Save gnurag/d907135784f0b99e14c8dd1aad88b496 to your computer and use it in GitHub Desktop.
Minimalist Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.ssh.insert_key = true
config.vm.box = "centos/7"
config.vm.provider :libvirt do |libvirt|
libvirt.memory = 1024
libvirt.cpus = 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment