Files
SCM-Manager/scm-packaging/deb/Vagrantfile
2020-04-26 11:36:18 +02:00

16 lines
385 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-18.04"
config.vm.network "forwarded_port", guest: 8080, host: 8080
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y /vagrant/target/scm-server_*.deb
SHELL
end