Created
August 14, 2015 07:04
-
-
Save ssbozy/6fdfa958a5510a4d12ed to your computer and use it in GitHub Desktop.
This file contains 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_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.network "public_network" | |
config.vm.provider "virtualbox" do |v| | |
v.name = "vagrant_ubuntu14.04" | |
v.memory = 2048 | |
v.cpus = 2 | |
end | |
config.vm.network "forwarded_port", guest: 27017, host: 5000 | |
config.vm.network "forwarded_port", guest: 8047, host: 5001 | |
config.vm.synced_folder "~/Downloads", "/data" | |
config.vm.provision :shell, :path => "bootstrap.sh" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ubuntu 14.04 Vagrant file