Installation of Packer

Nidhi
2 min readAug 31, 2018

Please visit my website and subscribe to my youtube channel for more articles

https://devops4solutions.com/

In this blog, we will do the Installation of Packer

Please follow the below steps

  1. Download the packer from here

INSTALLING PACKER ON MICROSOFT WINDOWS

  1. Create a directory like C:\packer and copy the executable file here.
  2. Add the packer path in your system path
  3. Open the powershell window and run the below command

Packer is successfully installed on your system.

Packer Components

Packer calls the process of creating an image a build.

Artifacts are the output from builds. One of the more useful aspects of Packer is that you can run multiple builds to produce multiple artifacts.

A build is fed from a template. The template is a JSON document that describes the image we want to build — both where we want to build it and what the build needs to contain.

To determine what sort of image to build, Packer uses components called builders. A builder produces an…

--

--