Skip to content

Instantly share code, notes, and snippets.

@ksophocleous
Last active August 29, 2015 14:07
Show Gist options
  • Save ksophocleous/213ccf8d7e2f9bc803e2 to your computer and use it in GitHub Desktop.
Save ksophocleous/213ccf8d7e2f9bc803e2 to your computer and use it in GitHub Desktop.
my usual Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "kostas"
config.vm.box_url = "https://kostas.io/kostas.box"
config.ssh.username = "kostas"
config.ssh.private_key_path = "~/.ssh/id_rsa"
config.ssh.forward_agent = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment