Skip to content

Instantly share code, notes, and snippets.

@GeoffreyPlitt
Created November 8, 2013 09:57
Show Gist options
  • Save GeoffreyPlitt/7368820 to your computer and use it in GitHub Desktop.
Save GeoffreyPlitt/7368820 to your computer and use it in GitHub Desktop.
Simplest way to play with Coreos with synced folder
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 =>'0.0.0.0', :auto_network => true
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