Last active
March 1, 2018 15:55
-
-
Save sameg14/fad40977277a08536b8d to your computer and use it in GitHub Desktop.
vagrant file for symfony.vm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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