Vagrant - Environnements de dev
Find a file
Taru Garg e15df81962
Some checks failed
/ sync-acceptance (push) Has been cancelled
Update CHANGELOG
2025-12-15 11:23:13 +05:30
.ci [COMPLIANCE] Update Copyright and License Headers (#13752) 2025-12-04 17:07:40 +05:30
.github Bump ruby/setup-ruby from 1.268.0 to 1.269.0 (#13757) 2025-12-08 17:44:03 +05:30
bin Merge pull request #13731 from survivant/main 2025-11-21 10:52:25 +05:30
builtin Merge pull request #13731 from survivant/main 2025-11-21 10:52:25 +05:30
contrib update to macOS documentation (#13600) 2025-03-14 16:50:54 -07:00
ext/vagrant/vagrant_ssl add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
keys Add ed25519 insecure private key 2023-06-26 15:06:02 -07:00
lib Merge pull request #13731 from survivant/main 2025-11-21 10:52:25 +05:30
plugins Add LSILogicSas to the list of supported storage controllers for VirtualBox (#13692) 2025-12-12 20:21:04 +05:30
scripts [COMPLIANCE] Update Copyright and License Headers (#13752) 2025-12-04 17:07:40 +05:30
tasks Update test output to only show progress 2023-09-14 16:15:02 -07:00
templates [COMPLIANCE] Update Copyright and License Headers (#13752) 2025-12-04 17:07:40 +05:30
test [COMPLIANCE] Update Copyright and License Headers (#13752) 2025-12-04 17:07:40 +05:30
website Add deprecation notice to docs 2025-11-20 12:41:04 -05:00
.copywrite.hcl update license year 2023-12-06 11:25:11 -08:00
.gitignore Update ignore file 2023-06-07 17:44:24 -07:00
.gitmodules Remove vagrant-go implementation 2025-03-17 14:14:42 -07:00
.vimrc .vimrc with vagrant tabstop settings 2013-10-22 08:24:58 +02:00
.yardopts YARD and some documentation 2010-09-22 09:43:30 -06:00
CHANGELOG.md Update CHANGELOG 2025-12-15 11:23:13 +05:30
Gemfile add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
LICENSE Update license files to static version and date 2025-03-17 15:00:07 -07:00
Rakefile Adjust extension location for correct install path 2023-06-21 09:43:28 -07:00
README.md Add note about curl to README 2020-11-06 15:42:10 -08:00
RELEASE.md Update new release steps 2023-10-16 09:25:14 -07:00
vagrant-spec.config.example.rb add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
vagrant.gemspec Remove library dependencies 2025-04-22 16:03:34 -07:00
Vagrantfile Restore Vagrant development Vagrantfile 2022-07-28 14:12:50 -05:00
version.txt Update files for new development 2.4.10.dev 2025-08-21 07:11:39 +00:00

Vagrant

Vagrant is a tool for building and distributing development environments.

Development environments managed by Vagrant can run on local virtualized platforms such as VirtualBox or VMware, in the cloud via AWS or OpenStack, or in containers such as with Docker or raw LXC.

Vagrant provides the framework and configuration format to create and manage complete portable development environments. These development environments can live on your computer or in the cloud, and are portable between Windows, Mac OS X, and Linux.

Quick Start

Package dependencies: Vagrant requires bsdtar and curl to be available on your system PATH to run successfully.

For the quick-start, we'll bring up a development machine on VirtualBox because it is free and works on all major platforms. Vagrant can, however, work with almost any system such as OpenStack, VMware, Docker, etc.

First, make sure your development machine has VirtualBox installed. After this, download and install the appropriate Vagrant package for your OS.

To build your first virtual environment:

vagrant init hashicorp/bionic64
vagrant up

Note: The above vagrant up command will also trigger Vagrant to download the bionic64 box via the specified URL. Vagrant only does this if it detects that the box doesn't already exist on your system.

Getting Started Guide

To learn how to build a fully functional development environment, follow the getting started guide.

Installing from Source

If you want the bleeding edge version of Vagrant, we try to keep main pretty stable and you're welcome to give it a shot. Please review the installation page here.

Contributing to Vagrant

Please take time to read the HashiCorp Community Guidelines and the Vagrant Contributing Guide.

Then you're good to go!