forked from BeWelcome/rox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
executable file
·29 lines (23 loc) · 908 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
##################################################
# Generated by phansible.com
##################################################
Vagrant.configure("2") do |config|
config.vm.provider :virtualbox do |v|
v.name = "bewelcome"
v.customize [
"modifyvm", :id,
"--name", "bewelcome",
"--memory", 1024,
"--natdnshostresolver1", "on",
"--cpus", 1,
]
end
config.vm.box = "debian/jessie64"
config.vm.box_version = "8.2.1"
config.vm.network :private_network, ip: "192.168.33.10"
config.vm.network "forwarded_port", guest: 80, host: 8080
config.ssh.forward_agent = true
# config.vm.hostname = "bewelcome"
config.vm.provision :shell, path: "ansible/windows.sh", args: ["bewelcome"]
config.vm.synced_folder "./", "/vagrant", :group=>"www-data", :mount_options=>["dmode=775","fmode=665"]
end