Skip to content

Instantly share code, notes, and snippets.

@Husseinbeygi
Created January 23, 2025 15:40
Show Gist options
  • Select an option

  • Save Husseinbeygi/126c3d42aac7b3bc47e1eeb6f4c5de6d to your computer and use it in GitHub Desktop.

Select an option

Save Husseinbeygi/126c3d42aac7b3bc47e1eeb6f4c5de6d to your computer and use it in GitHub Desktop.
Vagrant Config
IMAGE_ubuntu_2204 = "bento/ubuntu-22.04"
IMAGE_Debian_12 = "bento/debian-12"
Vagrant.configure("2") do |config|
config.vm.box = IMAGE_Debian_12
config.vm.network "public_network", ip: "192.168.1.150"
config.vm.hostname = "debain12-lite"
config.vm.provider "virtualbox" do |my_vm|
my_vm.name = "debian12-lite"
my_vm.memory = 1024
my_vm.cpus = 1
end
#config.vm.provision :shell, path: "bootstrap.sh"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment