You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
455 B
19 lines
455 B
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
|
VAGRANTFILE_API_VERSION = "2"
|
|
|
|
MEMORY = 3072
|
|
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
config.vm.box = "ubuntu/trusty64"
|
|
|
|
config.vm.provision :shell, path: "vagrant/provision.sh"
|
|
|
|
config.vm.network "private_network", ip: "192.168.100.67"
|
|
|
|
config.vm.provider "virtualbox" do |v|
|
|
v.memory = MEMORY
|
|
end
|
|
end
|
|
|