Created
December 14, 2015 08:42
-
-
Save ipiyer/fc7adfe54ed1ebf141cc to your computer and use it in GitHub Desktop.
vagrantfile
This file contains 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
Vagrant.configure(2) do |config| | |
config.vm.hostname = "docker-host" | |
config.vm.box_check_update = false | |
config.vm.provider "docker" do |d| | |
d.image = "ubuntu" | |
end | |
config.ssh.username = 'docker' | |
config.ssh.password = 'tcuser' | |
config.vm.synced_folder "srv/", "/srv/" | |
config.vm.provision :salt do |salt| | |
salt.minion_config = "srv/minion" | |
salt.run_highstate = true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment