Created
December 10, 2014 05:29
-
-
Save hammerdr/f1eca6a747e46463e16c to your computer and use it in GitHub Desktop.
Vagrantfile for GoCD Dev
This file contains 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
# -*- 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 = "go.v2" | |
config.vm.box_url = "http://download01.thoughtworks.com/go/vagrant/v2/go.v2.box" | |
config.vm.box_download_checksum = "931e6b5f4ed2697324ea523bf7f06ffece87a428aec9914fb639c093c2aad31c" | |
config.vm.box_download_checksum_type = "sha256" | |
config.vm.network :forwarded_port, guest: 8153, host: 8153, auto_correct: true | |
config.vm.network :forwarded_port, guest: 8154, host: 8154, auto_correct: true | |
config.vm.provider :virtualbox do |vb| | |
vb.gui = true | |
vb.customize ["modifyvm", :id, "--memory", "2048"] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment