Packer templates for building Vagrant baseboxes. These boxes are used at Xplore as development environments.
When using with Vagrant, Apache is configured to host from /httpdocs
from your local directory.
An empty database is created named vagrant
, username vagrant
, password vagrant
.
Generally any password should be vagrant
(seeing a theme?).
The following baseboxes are publicly available and were built using this project. They are also detailed at Vagrant Cloud.
First, install Packer and then clone this project.
Inside the packer
directory, a JSON file describes each box that can be built. You can use packer build to build the boxes.
$ packer build debian-6.0.9-amd64.json
or
$ packer build ubuntu-14.04-amd64.json
Congratulations! You now have the box in the ../builds
directory that you can then add to Vagrant.
Inspiration for these templates was taken from a number of places:
- Opscode Bento templates
- Tristan Helmich's Puppet additions to the above