forked from brightcove-archive/ooyala_barkeep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
18 lines (15 loc) · 782 Bytes
/
Vagrantfile
File metadata and controls
18 lines (15 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Vagrant::Config.run do |config|
config.vm.box = "lucid64"
config.vm.host_name = "barkeep-vagrant"
config.vm.box_url = "http://files.vagrantup.com/lucid64.box"
config.vm.provision :shell, :inline =>
"sudo mkdir -p /root/.ssh && sudo cp /home/vagrant/.ssh/authorized_keys /root/.ssh/"
# Forward a port from the guest to the host, which allows for outside
# computers to access the VM, whereas host only networking does not.
config.vm.forward_port 8040, 8080
# More memory than the default, since we're running a lot of stuff (1GB)
config.vm.customize ["modifyvm", :id, "--memory", 1024]
# Have ssh be accessible through port 2250. Hard coding this so we don't collide with other vagrant vms.
config.vm.forward_port 22, 2250
config.ssh.port = 2250
end