Skip to content

Instantly share code, notes, and snippets.

@kitwalker12
Last active August 29, 2015 14:24
Show Gist options
  • Save kitwalker12/20b0441758d59ebef14d to your computer and use it in GitHub Desktop.
Save kitwalker12/20b0441758d59ebef14d to your computer and use it in GitHub Desktop.
Coreos vagrant file
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 "/Users/myusername/apps", "/home/core/apps",
id: "core",
:nfs => true,
:mount_options => ['nolock,vers=3,udp']
if Vagrant.has_plugin?("vagrant-vbguest") then
config.vbguest.auto_update = false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment