Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/runlevel5/vagrant-boxes

A repo of orchestration code for Vagrant boxes
https://github.com/runlevel5/vagrant-boxes

Last synced: about 8 hours ago
JSON representation

A repo of orchestration code for Vagrant boxes

Awesome Lists containing this project

README

        

## Build vagrant box

Make sure you have the latest version of `packer`.

1. Build vagrant box:

```
# check Makefile for all targets, for example build alpine x86_64 libvirt
make alpine_x86_64_libvirt
```

2. Add vagrant box:

```
vagrant box add --name 'my_box' box/.box
```

3. Now you could use this image in `Vagrantfile`:

```
Vagrant.configure("2") do |config|
config.vm.box = "my_box"
end
```

### Credits

Codes are based on:

* https://github.com/osuosl/packer-templates