-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
46 lines (36 loc) · 1.15 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/ruby
#
# Vagrant File for Docker - Requires Vagrant 1.1+
# Provisioner: Salt
# OS: Ubuntu 12.04 LTS 64Bit
#
Vagrant.configure("2") do |config|
# Base Box - http://www.vagrantbox.es/ - Ubuntu 12.04 LTS 64bit
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
config.ssh.forward_agent = true
# Port Forwarding
config.vm.network :forwarded_port, guest: 8080, host: 8080
config.vm.network :forwarded_port, guest: 4243, host: 4243
(49000..49900).each do |port|
config.vm.network :forwarded_port, :host => port, :guest => port
end
# Virutalbox Settings
config.vm.provider :virtualbox do |v|
# Enables symlinks
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"]
end
#
# Mounts
#
config.vm.synced_folder ".", "/foo"
config.vm.synced_folder "./provisioner", "/srv/salt"
#
# Provisioner - Salt
#
config.vm.provision :salt do |salt|
salt.run_highstate = true
salt.minion_config = "provisioner/config/minion.conf"
salt.install_type = "stable"
end
end