Created
November 15, 2014 16:30
-
-
Save tlatsas/9a5b0bcde8f260353eb6 to your computer and use it in GitHub Desktop.
testing vagrant-docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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