Skip to content

Instantly share code, notes, and snippets.

@danielfilho
Forked from lorn/Vagrantfile
Last active December 17, 2015 07:29
Show Gist options
  • Save danielfilho/5573618 to your computer and use it in GitHub Desktop.
Save danielfilho/5573618 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
apt-get update
apt-get install -y apache2
apt-get install -y git
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.define :master do |master_config|
master_config.vm.box = "precise64"
master_config.vm.network :hostonly, "192.168.10.50"
master_config.vm.host_name = "localhost.dev"
master_config.vm.provision :shell, :path => "bootstrap.sh"
master_config.vm.share_folder "vagrant-root", "/var/www", "/Volumes/HD/dev/localhost.dev/www"
#master_config.vm.forward_port 3000, 93000
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment