-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
29 lines (23 loc) · 780 Bytes
/
Vagrantfile
File metadata and controls
29 lines (23 loc) · 780 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
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# config.vm.box = "bento/ubuntu-16.04"
config.vm.box = "epipho/mint-20.0"
# Disabling automatically update check
# To force update:
# vagrant box update
config.vm.box_check_update = false
config.vm.network :private_network, ip: "192.168.2.2"
config.vm.synced_folder ".", "/vagrant"
config.vm.provider :virtualbox do |vb|
# vb.gui = true
vb.customize ["modifyvm", :id, "--memory", "4096"]
end
# Install it with
# vagrant plugin install vagrant-cachier
if Vagrant.has_plugin?("vagrant-cachier")
config.cache.scope = :box
end
end