Last active
August 29, 2015 14:07
-
-
Save a-am/5331f2ea363e09c40797 to your computer and use it in GitHub Desktop.
Vagrantfile
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "parallels/ubuntu-12.04" | |
config.vm.network :private_network, ip: "192.168.50.4" | |
config.vm.provision :shell, :path => "install.sh" | |
config.vm.synced_folder ".", "/var/www" | |
config.vm.provider "parallels" do |v| | |
v.update_guest_tools = true | |
v.name = "LAMP" | |
v.memory = 1024 | |
v.cpus = 2 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NOTE TO SELF: first param in config.vm.synced_folder is for host folder