This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Vagrantfile
63 lines (53 loc) · 2.28 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
# -*- mode: ruby -*-
# vi: set ft=ruby :
ENV['VAGRANT_DEFAULT_PROVIDER'] = 'virtualbox'
Vagrant.require_version '>= 1.6.0'
Vagrant.configure(2) do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "mdkholy/dashbrew"
# The hostname the machine should have.
config.vm.hostname = "dashbrew.vm"
# Default Box IP Address
#
# This is the IP address that your host will communicate to the guest through.
#
# If you are already on a network using the 192.168.10.x subnet, this should be changed.
# If you are running more than one VM through VirtualBox, different subnets should be used
# for those as well. This includes other Vagrant boxes.
config.vm.network :private_network, ip: "192.168.10.10"
# VirtualBox-specific configuration.
config.vm.provider "virtualbox" do |vb|
# Use VBoxManage to customize the VM.
vb.customize ["modifyvm", :id, "--memory", "1024"]
vb.customize ["modifyvm", :id, "--cpus", "1"]
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
end
# Synced Folders
#
# For syncing folders between the host and the guest machines.
# The first parameter is a path to a directory on the host machine.
# The second parameter must be an absolute path of where to share the folder within the guest machine.
# Finally the third parameter is a set of non-required options to configure synced folders.
config.vm.synced_folder "public/", "/var/www/", group: 'www-data', :owner => "vagrant"
# Run the main shell provisioner.
config.vm.provision 'shell', run: 'always' do |s|
s.path = 'provision/provision.sh'
s.privileged = true
end
# Check if vagrant-hosts-provisioner plugin is installed
if Vagrant.has_plugin?("vagrant-hosts-provisioner")
# Run the hostsupdate provisioner
config.vm.provision :hostsupdate, run: 'always' do |host|
# Don't include the machine hostname
host.hostname = false
# Update the guest machine
host.manage_guest = true
# Update the host machine
host.manage_host = true
host.aliases = []
# Pull the hosts entries from the hosts.json file generated by the main provisioner
host.files = '/provision/main/etc/hosts.json'
end
end
end