summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2015-01-22 17:42:17 +0100
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-01-22 17:42:17 +0100
commit895d1ae9e5d0260b3d55b352deab7be589d24a99 (patch)
treebf9b81b5811865482a0a9851374adc5271260dc0 /Vagrantfile
parent781c9b33bb23d94398078d520f06a6def823a754 (diff)
Issue #244: Preparations for hackday vagrant image.
- To use it, do these steps: build the box: vagrant destroy && vagrant up source vagrant package --output hackday-user-agent.box source use the box: vagrant box add hackday-user-agent hackday-user-agent.box vagrant up hackday vagrant ssh hackday Scripts will be provided with next commit.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index c2bf477b..a8fcc62d 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -47,6 +47,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end
end
+ config.vm.define "hackday", autostart: false do |hackday|
+ config.vm.box = "hackday-user-agent"
+ end
+
config.vm.network :forwarded_port, guest: 3333, host: 3333
config.vm.provider "virtualbox" do |v|