Using Packer to create a development virtual machine for GeoBlacklight
A tutorial on how we use Packer to create a working virtual machine for the GeoBlacklight workshop
Warning
This tutorial may be outdated. Please refer to the Documentation pages for up to date instructions.
When we run the GeoBlacklight workshop, we provide attendees with a VirtualBox virtual machine (vm) so that they can participate without having download software. Having attendees connect to the internet to download large files doesn't always work in conference environments. To keep up to date with software dependencies we have rebuilt this virtual machine several times. Recently, the process for creating and updating the virtual machine has been automated using Packer. From Packer's website:
Packer is a tool for creating machine and container images for multiple platforms from a single source configuration.
This tutorial outlines how we create the GeoBlacklight workshop vm, so that others can create this virtual machine from scratch. This tutorial could also be adapted to create an image for Amazon EC2, Digital Ocean, Docker, and others.
Getting started
To get started, you will need to install several pieces of software that our Packer template will use. Go ahead and install this software for your system.
Required software:
- Packer installation
- VirtualBox download
- Vagrant download
Once you have installed all of the software, make sure that you have Packer available on your path.
$ packer -v
0.8.6
Using the GeoBlacklight Packer template
Next, you will need to clone down the Packer template that was created for the GeoBlacklight Workshop from https://github.com/mejackreed/packer-templates.
$ git clone https://github.com/mejackreed/packer-templates.git
Next change directory (cd
) into the git repository you just cloned.
$ cd packer-templates
And checkout the geoblacklight
branch.
$ git checkout geoblacklight
Finally, change directory (cd
) into the ubuntu-16.04.3
directory. This is the image I based the GeoBlacklight Workshop image on.
$ cd ubuntu-16.04.3
Exploring the Packer template
The template.json
file is where Packer takes its directions from. I won't go through everything in this file, but I will point out some of the customizations I made for the GeoBlacklight workshop.
The major customizations added, were the addition of four scripts that run during creation.
ruby.sh
Installs rbenv, Ruby, bundler, and specifies no rdoc documentation.
rails.sh
Installs nodejs and Ruby on Rails.
geoblacklight.sh
Creates a GeoBlacklight application and downloads and configures jetty/solr.
opengeosuite.sh
Installs OpenGeoSuite.
Creating the Vagrant box
You can modify any of these scripts to meet your customization needs. After doing so, you will want to create your VirtualBox vm. To do so run the following command from the ubuntu-16.04.3
directory:
$ packer build template.json
This command will take a while so it might be best to go get a coffee. What the command is doing:
- Downloading a fresh copy of Ubuntu
- Creating a VirtualBox image with that copy of Ubuntu
- Updating the vm's packages
- Installing our custom software
After the command finishes you should have your virtual machine box waiting for you in the same directory.
To create a Vagrantfile
to use with this box:
$ vagrant init ubuntu-14-04-3-x32-virtualbox.box
Now you can start up your fresh box using:
$ vagrant up
And to ssh in
$ vagrant ssh
Conclusion
I hope this tutorial is useful to others who run technical workshops. It can sometimes be painful in trying to support workshops on multiple platforms with limited network connectivity. This workflow of using Packer, Vagrant, and VirtualBox has been successful for us.