dnote/host/smoketest/Vagrantfile
Sung 4258ea1715
Release server-v2.1.0 (#633)
* Release server-v2.1.0

* Fix smoke test
2023-03-04 11:57:40 +11:00

9 lines
277 B
Ruby

# -*- mode: ruby -*-
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/jammy64"
config.vm.synced_folder './volume', '/vagrant'
config.vm.network "forwarded_port", guest: 2300, host: 2300
config.vm.provision 'shell', path: './setup.sh', privileged: false
end