forked from ricardoamaro/drupalci_testbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
18 lines (16 loc) · 669 Bytes
/
Vagrantfile
File metadata and controls
18 lines (16 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provision :shell, :path => "provision.sh"
config.vm.network :private_network, ip: "192.168.42.42"
config.vm.synced_folder ".", "/home/vagrant/drupalci_testbot", type: "rsync", rsync__args: ["-a"]
config.vm.define "testbot" do |testbot|
testbot.vm.provider "virtualbox" do |v|
v.customize [ "modifyvm", :id, "--cpus", "4" ]
v.customize [ "modifyvm", :id, "--memory", "756" ]
v.customize [ "modifyvm", :id, "--natdnshostresolver1", "on" ]
end
end
end