File size: 222 Bytes
bf48b89
 
 
 
 
1
2
3
4
5
6
Vagrant.configure("2") do |config|
  config.vm.box = "generic/ubuntu2004"
  config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ".git/"
  config.ssh.extra_args = ["-t", "cd /vagrant; bash --login"]
end