This repository has been archived by the owner on Oct 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 255
/
Vagrantfile
65 lines (55 loc) · 2.5 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.require_version ">= 1.7.0"
Vagrant.configure("2") do |config|
# Use Ubuntu 14.04 if we need PHP5
# config.vm.box = "bento/ubuntu-14.04"
config.vm.box = "bento/ubuntu-16.04"
if Vagrant.has_plugin? 'vagrant-omnibus'
# Set Chef version for Omnibus
config.omnibus.chef_version = :latest
else
raise Vagrant::Errors::VagrantError.new,
"vagrant-omnibus missing, please install the plugin:\n" +
"vagrant plugin install vagrant-omnibus"
end
# Disable vagrant-berkshelf because it overrides chef cookbooks path
# See https://github.com/berkshelf/vagrant-berkshelf/issues/274
if Vagrant.has_plugin? 'vagrant-berkshelf'
config.berkshelf.enabled = false
end
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine.
# Forward MySql port on 33066, used for connecting admin-clients to localhost:33066
config.vm.network :forwarded_port, guest: 3306, host: 33066
# Forward http port on 8080, used for connecting web browsers to localhost:8080
config.vm.network :forwarded_port, guest: 80, host: 8080
# Forward http port on 8025, used for connecting web browsers to MailHog
config.vm.network :forwarded_port, guest: 8025, host: 8025
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network :private_network, ip: "192.168.33.10"
# Set share folder permissions to 777 so that apache can write files
config.vm.synced_folder ".", "/vagrant", mount_options: ['dmode=777','fmode=666']
# Provider-specific configuration so you can fine-tune VirtualBox for Vagrant.
# These expose provider-specific options.
config.vm.provider :virtualbox do |vb|
# Use VBoxManage to customize the VM.
# For example to change memory or number of CPUs:
vb.customize ["modifyvm", :id, "--memory", "1024"]
vb.customize ["modifyvm", :id, "--cpus", "1"]
end
# Enable provisioning with chef zero, specifying a cookbooks path, roles
# path, nodes path and data_bags path (all relative to this Vagrantfile), and adding
# some recipes and/or roles.
config.vm.provision :chef_zero do |chef|
chef.cookbooks_path = ["berks-cookbooks", "cookbooks"]
chef.data_bags_path = "data_bags"
chef.nodes_path = "nodes"
# List of recipes to run
chef.add_recipe "vagrant_main"
chef.add_recipe "vagrant_main::nodejs"
chef.add_recipe "vagrant_main::wordpress"
chef.add_recipe "vagrant_main::magento"
end
end