Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 699 Bytes

usage.md

File metadata and controls

32 lines (20 loc) · 699 Bytes

Luke's Packer Templates: Usage

Prerequisites

In order to use any of my images, you'll need Vagrant.

Basic Usage

I publish all of my Vagrant boxes to the Vagrant Cloud and you are welcomed to use them for your own projects.

Adding one of my boxes to Vagrant

$ vagrant box add vmadman/centos-7.3

Using one of my boxes in a Vagrantfile

Vagrant.configure("2") do |config|
  config.vm.box = "vmadman/centos-7.3"
end

Further Reading

  • Project Readme - The project's README provides links to all other documentation.