-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
40 lines (29 loc) · 898 Bytes
/
Vagrantfile
File metadata and controls
40 lines (29 loc) · 898 Bytes
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
# Defines our Vagrant environment
#
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "bento/debian-7"
config.vm.box_version = "201806.08.0"
config.vm.hostname ="php-csr-decoder-8.0"
config.vm.define :"php-csr-decoder-8.0"
#config.vm.network 'private_network', ip: '192.168.55.222'
config.vm.network 'private_network', type: 'dhcp'
# Mount project files
# config.vm.synced_folder './environment', '/home/vagrant/environment',
# create: true,
# group: 'vagrant'
# #mount_options: ['dmode=775,fmode=664']
# Mount project files
config.vm.synced_folder './src', '/home/vagrant/src',
create: true,
group: 'vagrant'
#mount_options: ['dmode=775,fmode=664']
# Configure VirtualBox params
config.vm.provider "virtualbox" do |vb|
vb.memory = 2048
vb.cpus = 2
vb.gui = false
vb.name = "PHP-CSR-DECODER-8.0"
end
end