Vagrant: Difference between revisions
No edit summary |
No edit summary |
||
| Line 16: | Line 16: | ||
* [https://github.com/devopsgroup-io/vagrant-hostmanager Vagrant Hostmanager] from the DevOps Group in Philadelphia, PA let's you manage the 'hosts' file on your guests, and optionally the host system itself, to make multi-node deployments easier. Note that there are a handful of 'vagrant hostmanager' plugins <ref>e.g. https://github.com/cogitatio/vagrant-hostsupdater .</ref> The DevOps Group also makes [https://github.com/devopsgroup-io/catapult Catapult] which is a system compared to Pantheon or Acquia for managing the full lifecycle of Drupal hosting. | * [https://github.com/devopsgroup-io/vagrant-hostmanager Vagrant Hostmanager] from the DevOps Group in Philadelphia, PA let's you manage the 'hosts' file on your guests, and optionally the host system itself, to make multi-node deployments easier. Note that there are a handful of 'vagrant hostmanager' plugins <ref>e.g. https://github.com/cogitatio/vagrant-hostsupdater .</ref> The DevOps Group also makes [https://github.com/devopsgroup-io/catapult Catapult] which is a system compared to Pantheon or Acquia for managing the full lifecycle of Drupal hosting. | ||
* [https://github.com/mattes/vagrant-dnsmasq ] A Dnsmasq Vagrant plugin that manages the dnsmasq.conf file and /etc/resolver directory on your host system. | * [https://github.com/mattes/vagrant-dnsmasq ] A Dnsmasq Vagrant plugin that manages the dnsmasq.conf file and /etc/resolver directory on your host system. | ||
== Creating a CentOS 7 box == | |||
You need a CentOS box to develop/test? | |||
# make a new folder: <code>mkdir ~/src/centos7 && cd !$</code> | |||
# <code>vagrant init centos/7</code> will write your Vagrantfile for you | |||
# <code>vagrant up</code> will start (and build) the virtual machine | |||
== See Also == | == See Also == | ||