summaryrefslogtreecommitdiff
path: root/Vagrantfile
blob: efd37f180fb3d35498af74a3ecebb14fe1c8956c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Vagrant.configure("2") do |config|
	config.vm.box = "bento/debian-9.4"
	config.vm.provision :shell, path: "postgres/bootstrap.sh"
	config.vm.network "forwarded_port", guest: 5432, host: 5432
	config.ssh.forward_x11 = true

	config.vm.provider "virtualbox" do |v|
		v.name = "postgres"
		v.gui = false
		v.cpus = 2
		v.memory = 2048
	end
end