https://github.com/enthought/packer-templates-1
Default Repo description from terraform module
https://github.com/enthought/packer-templates-1
Last synced: 10 months ago
JSON representation
Default Repo description from terraform module
- Host: GitHub
- URL: https://github.com/enthought/packer-templates-1
- Owner: enthought
- License: apache-2.0
- Created: 2016-02-20T15:02:58.000Z (over 10 years ago)
- Default Branch: develop
- Last Pushed: 2015-10-17T02:52:02.000Z (over 10 years ago)
- Last Synced: 2025-05-17T01:10:01.733Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 520 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==========================
shiguredo-packer-templates
==========================
Packer templates for building base VM boxes.
NOTE: Maybe you prefer official Ubuntu and CentOS vagrant boxes
===============================================================
There are now official Ubuntu and CentOS vagrant boxes at `Vagrant Cloud `_. These boxes are regularly updated to have newer packages.
If you don't need to build a customized box, maybe you can use those boxes instead of building boxes yourself using Packer and templates in this repository.
* `ubuntu/trusty64 `_
* `ubuntu/trusty32 `_
* `centos/7 `_
For example, you can use Vagrantfile like below to use official CentOS 7 box.
::
Vagrant.configure(2) do |config|
config.vm.box = "centos/7"
end
Usage
=====
Installing Packer
-----------------
Download the latest packer from http://www.packer.io/downloads.html and unzip the appropriate directory.
If you're using Homebrew
::
$ brew tap homebrew/binary
$ brew install packer
Running Packer
--------------
::
$ git clone https://github.com/shiguredo/packer-templates
$ cd packer-templates
$ packer build template.json
If you want to build only virtualbox.
::
$ packer build -only=virtualbox-iso template.json
Parallel builds can be run on 0.6.0 or latest packer version.
::
$ packer build -parallel=true template.json
Supported versions
------------------
This templates was tested using a packer 0.7.5 .