-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathVagrantfile
More file actions
21 lines (16 loc) · 737 Bytes
/
Vagrantfile
File metadata and controls
21 lines (16 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Vagrant.configure("2") do |config|
config.vm.box = "AntonioMeireles/coreos-alpha"
config.vm.network :private_network, ip: "192.168.80.100"
config.vm.synced_folder ".", "/var/docker",
:type => :nfs,
:mount_options => ['nolock,vers=3,udp,noatime,actimeo=1']
config.vm.provider "virtualbox" do |v|
v.name = "docker-atlassian"
v.auto_nat_dns_proxy = false
v.customize ["modifyvm", :id, "--memory", 3048, "--cpus", 4]
v.customize ["modifyvm", :id, "--natdnsproxy1", "off" ]
v.customize ["modifyvm", :id, "--natdnshostresolver1", "off" ]
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/app", "1"]
end
config.vm.provision "shell", path: "vagrant/setup.sh"
end