Skip to content

Instantly share code, notes, and snippets.

@tlatsas
Created November 15, 2014 16:30
Show Gist options
  • Save tlatsas/9a5b0bcde8f260353eb6 to your computer and use it in GitHub Desktop.
Save tlatsas/9a5b0bcde8f260353eb6 to your computer and use it in GitHub Desktop.
testing vagrant-docker
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.define :test1 do |box|
box.vm.hostname = 'test1'
box.vm.network :forwarded_port, :guest => 9190, :host => 9190
box.vm.provider "docker" do |d|
d.image = "tlatsas/debian-vagrant:latest"
d.has_ssh = true
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment