This repository contains the code used to create the Vagrant box for Proxmox 7 on VirtualBox. The box can be used to test Proxmox in a development environment and then destroyed when no longer needed.
Report any issues or feature requests in the issues section of this repository.
This box is released to Vagrant Cloud for ease of access.
Ensure you have met the following dependencies:
- Install Oracle VM VirtualBox (https://www.virtualbox.org/wiki/Downloads)
- Install Vagrant (https://www.vagrantup.com/downloads)
Vagrant.configure("2") do |config|
config.vm.box = "clincha/proxmox-ve-7"
end
vagrant init clincha/proxmox-ve-7
vagrant up
You can SSH into the server using the following command:
vagrant ssh
Alternatively, you can run the following command to SSH into the server:
ssh -p 2222 [email protected]
You can access the Proxmox web interface by navigating to https://127.0.0.1:8006
in your browser. The default username is root
and the password is vagrant
.