diff options
author | Christoph Kluenter <ckluente@thoughtworks.com> | 2014-11-20 17:40:21 +0000 |
---|---|---|
committer | Christoph Kluenter <ckluente@thoughtworks.com> | 2014-11-20 17:40:40 +0000 |
commit | d935b7f0af4f7906090c6637fd36126bee0934f0 (patch) | |
tree | d36d1d3c1cb29f9c2550fa23d68fd31cf9d64f1e /Vagrantfile | |
parent | da0a8e77d19f5dffff3021d0f6ff4b2d10b97a31 (diff) |
change Vagrantfile for Hacknight
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile index 66fada32..999d390f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,7 +10,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # please see the online documentation at vagrantup.com. # Every Vagrant virtual environment requires a box to build off of. - config.vm.box = "ubuntu/trusty64" + config.vm.box = "PixelatedUserAgent" # The url from where the 'config.vm.box' box will be fetched if it # doesn't already exist on the user's system. @@ -21,7 +21,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # accessing "localhost:8080" will access port 80 on the guest machine. config.vm.network :forwarded_port, guest: 3333, host: 3333 - config.vm.provision :shell, path: "provisioning/provision.sh" + #config.vm.provision :shell, path: "provisioning/provision.sh" # Create a private network, which allows host-only access to the machine # using a specific IP. # config.vm.network :private_network, ip: "192.168.33.10" |