Difference between revisions of "Vagrantfile"
Jump to navigation
Jump to search
Tags: Mobile web edit, Mobile edit |
Tags: Mobile web edit, Mobile edit |
||
Line 1: | Line 1: | ||
* [[Vagrantfile example]] | * [[Vagrantfile example]] | ||
+ | |||
+ | * https://github.com/vagrant-libvirt/vagrant-libvirt | ||
+ | |||
Vagrant.configure("2") do |config| | Vagrant.configure("2") do |config| |
Revision as of 13:02, 11 April 2021
Vagrant.configure("2") do |config| config.vm.box = "generic/ubuntu2010" config.vm.define "YOUR_VM_MACHINE_NAME" config.vm.provider :libvirt do |libvirt| libvirt.default_prefix = "" end end
It will create a 2 CPU 2 GB memory machine.
To login use:
- Username: vagrant
- Password: vagrant
Vagrant.configure("2") do |config| config.vm.box = "bento/fedora-32" end
Vagrant.configure("2") do |config| config.vm.box = "fedora/32-cloud-base" end
Including a hostname
Vagrant.configure("2") do |config| config.vm.box = "fedora/32-cloud-base" config.vm.define "YOUR_HOSTNAME_MACHINE" end
Including a hostname and removing default prefix
Vagrant.configure("2") do |config| config.vm.box = "fedora/32-cloud-base" config.vm.define "YOUR_HOSTNAME_MACHINE" config.vm.provider :libvirt do |libvirt| libvirt.default_prefix = "" end end
See also
Advertising: