Skip to content

Instantly share code, notes, and snippets.

@mrakitin
Created May 14, 2020 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrakitin/e987a3da9f6d8c8417b0a726114f978a to your computer and use it in GitHub Desktop.
Save mrakitin/e987a3da9f6d8c8417b0a726114f978a to your computer and use it in GitHub Desktop.
# -*-ruby-*-
Vagrant.configure("2") do |config|
# From https://app.vagrantup.com/metaswitch-its/boxes/centos7-min-xfce
config.vm.box = "metaswitch-its/centos7-min-xfce"
config.vm.hostname = "um2020"
config.vm.network "private_network", ip: "10.10.10.10"
config.vm.provider "virtualbox" do |v|
v.memory = 8192
v.cpus = 2
# Display the VirtualBox GUI when booting the machine
v.gui = true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment