# -*- mode: ruby -*- # vi: set ft=ruby : # Give it the absolute path -- this way it doesn't matter where Vagrant commands are issued from project_path = __dir__ + '/' Vagrant.configure("2") do |config| config.vm.box = 'bento/ubuntu-20.04' config.vm.box_version = '202105.25.0' config.vm.network "forwarded_port", guest: 80, host: 8080 config.vm.synced_folder project_path, '/srv/phorge' config.vm.provision 'shell', path: project_path + '/provision.sh' end