Vagrant: Exemplos de Arquivos Vagrantfile: Difference between revisions
(Criou a página com "= Escolhendo Diferentes Boxes = == hashicorp/precise64 == Baseado no Ubuntu 12.04 LTS, distribuição enxuta Vagrant.configure("2") do |config| config.vm.box = "hashic...") |
(No difference)
|
Revision as of 23:45, 17 September 2018
Escolhendo Diferentes Boxes
hashicorp/precise64
Baseado no Ubuntu 12.04 LTS, distribuição enxuta
Vagrant.configure("2") do |config| config.vm.box = "hashicorp-vagrant/precise64" end
CentOS 7.4
Vagrant.configure("2") do |config| config.vm.box = "hashicorp-vagrant/centos-7.4" end