forked from polyptychon/ubuntu_install_scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile_sample
23 lines (17 loc) · 880 Bytes
/
Vagrantfile_sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.vm.customize ["modifyvm", :id, "--name", "app", "--memory", "512"]
config.vm.host_name = "app"
config.vm.forward_port 22, 2222, :auto => true
# config.vm.forward_port 80, 7000
# config.vm.network :hostonly, "33.33.13.37"
# config.vm.share_folder "hosttmp", "/hosttmp", "/tmp"
config.vm.share_folder "install_scripts", "/home/vagrant/install_scripts", "../ubuntu_install_scripts/install_scripts"
end