-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
58 lines (47 loc) · 2.26 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
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure(2) do |config|
config.vm.box = "fedora/23-cloud-base"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network "private_network", ip: "192.168.25.25"
# Shared folder to the guest VM. The first argument is the path on the host
# config.vm.synced_folder "../data", "/vagrant_data"
config.vm.synced_folder "./", "/vagrant", :nfs => { :mount_options => ["dmode=777","fmode=777"] }
# vagrant-vbguest plugin configuration - https://github.com/dotless-de/vagrant-vbguest/
# do NOT download the iso file from a webserver
#config.vbguest.no_remote = true # for this to be true you need the iso package installed
# check additions version when booting this machine
#config.vbguest.auto_update = false
# allow to use my ssh key from vagrant guest
#config.ssh.forward_agent = 'true'
# VirtualBox provider specific configuration:
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
#vb.gui = true
# Customize the amount of memory on the VM:
vb.memory = "1024"
end
# Run Ansible from the Vagrant Host - provisioning
config.vm.provision "ansible" do |ansible|
# ansible.verbose = "v"
ansible.playbook = "ansible/playbook.yml"
ansible.inventory_path = "ansible/inventories/vagrant"
ansible.limit = "vagrant"
end
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# sudo apt-get update
# sudo apt-get install -y apache2
# SHELL
end