-
Notifications
You must be signed in to change notification settings - Fork 1
/
Vagrantfile
33 lines (27 loc) · 959 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure(2) do |config|
# Enable x11 forwarding.
config.ssh.forward_x11 = "true"
# Configure default virtualbox environment.
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
config.vm.define "docker64", primary: true do |v|
v.vm.provision :shell, :path => "bootstrap_vm.sh"
v.vm.hostname = "docker64"
v.vm.box = "unicorn64"
v.vm.network "forwarded_port", guest: 5901, host: 5901
end
config.vm.define "docker32", primary: true do |v|
v.vm.provision :shell, :path => "bootstrap_vm.sh"
v.vm.hostname = "docker32"
v.vm.box = "unicorn32"
v.vm.network "forwarded_port", guest: 5902, host: 5902
end
end