Skip to content

Instantly share code, notes, and snippets.

@joiggama
Created August 8, 2018 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joiggama/b2f076eaa9d40f0d9577b091aecfd32b to your computer and use it in GitHub Desktop.
Save joiggama/b2f076eaa9d40f0d9577b091aecfd32b to your computer and use it in GitHub Desktop.
# frozen_string_literal: true
Vagrant.configure("2") do |config|
config.vm.define "database" do |service|
service.vm.provider "docker" do |d|
d.image = "postgres:10.4"
d.ports = ["5433:5432"]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment