init
This commit is contained in:
commit
b0e6cbff4b
12
Vagrantfile
vendored
Normal file
12
Vagrantfile
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
config.ssh.insert_key = false
|
||||
config.vm.box = "generic/ubuntu2204"
|
||||
config.vm.synced_folder ".", "/vagrant", disabled: true
|
||||
|
||||
config.vm.provision "shell", inline: <<-SHELL
|
||||
apt-get update && apt-get upgrade -y
|
||||
SHELL
|
||||
end
|
Loading…
Reference in New Issue
Block a user