Created
August 22, 2014 10:11
-
-
Save jcleveley-zz/60c32a5ba3853c54240a to your computer and use it in GitHub Desktop.
Vagrant CoreOS for 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
Vagrant.configure('2') do |config| | |
config.vm.box = "coreos" | |
config.vm.box_url = "http://storage.core-os.net/coreos/amd64-generic/dev-channel/coreos_production_vagrant.box" | |
config.vm.network "private_network", ip: "172.12.8.150" | |
config.vm.synced_folder ".", "/home/core/share", | |
id: "core", | |
:nfs => true, | |
:mount_options => ['nolock,vers=3,udp'] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment