Mercurial > hg > soundsoftware-site
view deploy/vagrant/Vagrantfile @ 1621:3a510bf6a9bc
Merge from live branch
author | Chris Cannam |
---|---|
date | Fri, 13 Jul 2018 10:44:33 +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