How to use this box with Vagrant:

Vagrant.configure("2") do |config|
  config.vm.box = "joelhandwell/ubuntu16_packer_docker_chefdk"
  config.vm.box_version = "1.1.16"
end
vagrant init joelhandwell/ubuntu16_packer_docker_chefdk \
  --box-version 1.1.16
vagrant up

This version was created over 7 years ago.

  • ChefDK 1.1.16
  • Docker 1.12.5
  • Packer 0.12.1

Vagrantfile

# -*- mode: ruby -*-                                       
# vi: set ft=ruby :                                        

Vagrant.configure("2") do |config|                         

  config.vm.box = "bento/ubuntu-16.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

1 provider for this version.
  • virtualbox
    unknown Hosted by Vagrant Cloud (903 MB)