Skip to content

Instantly share code, notes, and snippets.

@jcleveley-zz
Created August 22, 2014 10:11
Show Gist options
  • Save jcleveley-zz/60c32a5ba3853c54240a to your computer and use it in GitHub Desktop.
Save jcleveley-zz/60c32a5ba3853c54240a to your computer and use it in GitHub Desktop.
Vagrant CoreOS for Docker
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