1
0
Fork 0

Vagrantfile

This commit is contained in:
chris 2014-08-16 01:57:57 +02:00
parent 45029f08e1
commit ca7c4a0e37
1 changed files with 15 additions and 0 deletions

15
Vagrantfile vendored Normal file
View File

@ -0,0 +1,15 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "chef/debian-7.4"
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.synced_folder ".", "/vagrant", owner: 'vagrant', group: 'www-data', mount_options: ['dmode=775', 'fmode=664']
config.vm.provision "ansible" do |ansible|
ansible.playbook = "ansible/play.yml"
end
end