Mercurial > hg > soundsoftware-site
view deploy/vagrant/Vagrantfile @ 1624:76f8f0814e1e live
Use --check to avoid errors when updating in repos with more than one head
author | Chris Cannam |
---|---|
date | Fri, 10 Aug 2018 16:08:05 +0100 |
parents | d8949733849d |
children |
line wrap: on
line source
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config.vm.box = "ubuntu/xenial64" config.vm.network "forwarded_port", guest: 80, host: 8080 config.vm.synced_folder "../..", "/code-to-deploy" config.vm.provision :shell, path: "vagrant-provision.sh" end