Created
January 23, 2025 15:40
-
-
Save Husseinbeygi/126c3d42aac7b3bc47e1eeb6f4c5de6d to your computer and use it in GitHub Desktop.
Vagrant Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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