Skip to content

Instantly share code, notes, and snippets.

@koziolku
koziolku / Vagrantfile
Last active February 28, 2021 16:36
Dive into Ansible - Vagrantfile
Vagrant.configure("2") do |config|
# Default Vagrant box - Ubuntu 20.04 from roboxes.org
config.vm.box = "generic/ubuntu2004"
# Suitable hostname - if you see it in your prompt, then you're in containers' host VM
config.vm.hostname = "diveinto"
# Some VirtualBox configuration.
config.vm.provider "virtualbox" do |v|