Skip to content

Instantly share code, notes, and snippets.

@mabrizio
Created May 20, 2019 19:24
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 mabrizio/cf3d7344cc9350ace990bb04dfca88cb to your computer and use it in GitHub Desktop.
Save mabrizio/cf3d7344cc9350ace990bb04dfca88cb to your computer and use it in GitHub Desktop.
sudo yum -y install epel-release
sudo yum -y install wget vim unzip
Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provider "virtualbox" do |vb|
vb.memory = "4096"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment