Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vagrant | 25,388 | 2,568 | 146 | a day ago | 65 | March 13, 2014 | 689 | other | Ruby | |
Vagrant is a tool for building and distributing development environments. | ||||||||||
Metasploitable3 | 4,162 | 2 months ago | 57 | other | HTML | |||||
Metasploitable3 is a VM that is built from the ground up with a large amount of security vulnerabilities. | ||||||||||
Bento | 4,102 | 6 days ago | 6 | apache-2.0 | HCL | |||||
Packer templates for building minimal Vagrant baseboxes for multiple platforms | ||||||||||
Vagrant Vbguest | 2,862 | 87 | 2 | 8 months ago | 74 | June 05, 2021 | 12 | mit | Ruby | |
A Vagrant plugin to keep your VirtualBox Guest Additions up to date | ||||||||||
Trellis | 2,437 | a month ago | 22 | mit | Jinja | |||||
WordPress LEMP stack with PHP 8.1, Composer, WP-CLI and more | ||||||||||
Freeciv Web | 1,876 | 3 days ago | 90 | other | JavaScript | |||||
Freeciv-web is an Open Source strategy game implemented in HTML5 and WebGL, which can be played online against other players, or in single player mode against AI opponents. | ||||||||||
Kubernetes Vagrant Centos Cluster | 1,827 | a year ago | 17 | apache-2.0 | Shell | |||||
Setting up a distributed Kubernetes cluster along with Istio service mesh locally with Vagrant and VirtualBox, only PoC or Demo use. | ||||||||||
Coreos Vagrant | 1,675 | 5 years ago | 11 | apache-2.0 | ||||||
Minimal Vagrantfile for Container Linux | ||||||||||
Thimble.mozilla.org | 1,420 | 4 years ago | 258 | mpl-2.0 | JavaScript | |||||
UPDATE: This project is no longer maintained. Please check out Glitch.com instead. | ||||||||||
Drupal Vm | 1,391 | 121 | 10 | 7 months ago | 99 | May 28, 2021 | 16 | mit | Jinja | |
A VM for Drupal development |
A packer plugin to create Hyper-V vagrant boxes from VirtualBox artifacts.
You can use this plugin without having Hyper-V installed.
Add the plugin to your packer template:
{
"builders": [
{
"type": "vmware-iso", ...
},
{
"type": "virtualbox-iso", ...
}
],
"post-processors": [
{
"type": "vagrant",
"output": "output_{{.Provider}}.box",
},
{
"type": "virtualbox-to-hyperv",
"only": ["virtualbox-iso"],
"output": "output_hyperv.box"
}
]
}
This would generate a vagrant box for vmware, virtualbox and hyperv providers
In order for a box to work in Hyper-V, the guest VM will need Hyper-V integration tools installed. Otherwise, vagrant will not be able to determine the guest's IP address.
For some real examples, see packer templates for Windows 2008 R2 and Ubuntu 14.04.
This plugin extends the Vagrant post-processor and accepts the same configuration options.
It also accepts this additional configuration:
vm_name
(string) - the name of the virtual machine displayed in Hyper-V Manager.
By default this is "packer-BUILDNAME", where "BUILDNAME" is the name of the build.
Can be changed in the Vagrantfile by setting vmname in the hyperv provider.~/.packerconfig
or %APPDATA%\packer.config
on Windows:{
"post-processors": {
"virtualbox-to-hyperv": "packer-post-processor-virtualbox-to-hyperv"
}
}
See also Installing Plugins.
Based on MSOpenTech/packer-hyperv using the techniques described in Creating a Hyper-V Vagrant box from a VirtualBox vmdk or vdi image