How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "joelhandwell/ubuntu14_packer_docker_chefdk"
config.vm.box_version = "1.1.16"
end
vagrant init joelhandwell/ubuntu14_packer_docker_chefdk \
--box-version 1.1.16
vagrant up
This version was created over 7 years ago.
Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-14.04"
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
# vb.gui = true
vb.cpus = 2
vb.memory = 4096
end
config.vm.provision "chef_zero" do |chef|
chef.nodes_path = "nodes"
chef.add_recipe "pdc"
end
end
Provisioned by https://github.com/gospelandit/pdc version 1.0.2