Vagrant: Exemplos de Arquivos Vagrantfile

From Wiki
Revision as of 23:45, 17 September 2018 by Ebasso (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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


Ver também