To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / extra / soundsoftware / vagranttest / Vagrantfile @ 1578:06ca2df3d7ca

History | View | Annotate | Download (290 Bytes)

1 1577:e38eee2e1d47 Chris
# -*- mode: ruby -*-
2
# vi: set ft=ruby :
3
4
Vagrant.configure("2") do |config|
5
  config.vm.box = "ubuntu/xenial64"
6
  config.vm.network "forwarded_port", guest: 80, host: 8080
7
  config.vm.synced_folder "../../..", "/vagrant-code"
8
  config.vm.provision :shell, path: "vagrant-provision.sh"
9
end