adding vagrant and docker files

This commit is contained in:
Mike McCabe
2014-09-18 18:53:30 -06:00
parent ca11cabadd
commit 0dcadb6f00
4 changed files with 40 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "hashicorp/precise64"
config.vm.provision "docker"
config.vm.provision "shell", inline:
"ps aux | grep 'sshd:' | awk '{print $2}' | xargs kill"
config.vm.network :forwarded_port, guest: 3000, host: 3000
end