Skip to content

Instantly share code, notes, and snippets.

@sebastianwebber
Created July 7, 2016 18:51
Show Gist options
  • Select an option

  • Save sebastianwebber/307dbe053fcd43485384bdbb1e3b0197 to your computer and use it in GitHub Desktop.

Select an option

Save sebastianwebber/307dbe053fcd43485384bdbb1e3b0197 to your computer and use it in GitHub Desktop.
Vagrant box utilizada no pgcast
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "centos/7"
config.vm.provider "virtualbox" do |vb|
vb.gui = false
vb.memory = "2048"
end
config.vm.define "pgcasts" do |master|
master.vm.hostname = "pgcasts"
master.vm.network "private_network", ip: "192.168.0.200"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment