Skip to content

Instantly share code, notes, and snippets.

@sameg14
Last active March 1, 2018 15:55
Show Gist options
  • Save sameg14/fad40977277a08536b8d to your computer and use it in GitHub Desktop.
Save sameg14/fad40977277a08536b8d to your computer and use it in GitHub Desktop.
vagrant file for symfony.vm
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.hostname = "symfony.vm"
config.vm.box = "sameg14/symfony2"
config.vm.network "private_network", ip: "10.10.10.24"
config.vm.synced_folder "symfony2", "/var/www/symfony2"
config.vm.provider "virtualbox" do |vb|
vb.gui = false
vb.customize ["modifyvm", :id, "--memory", "2056"]
vb.customize ["modifyvm", :id, "--cpus", "2"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment