Vagrant - Environnements de dev
Find a file
2025-05-21 22:45:19 +00:00
.ci Remove the VARGANT-GO entry from changelog 2025-04-21 15:06:31 -07:00
.github Bump ruby/setup-ruby from 1.226.0 to 1.244.0 2025-05-21 17:26:29 +00:00
bin Update Vagrant behavior outside of installers 2025-04-02 11:40:17 -07:00
builtin Adds initial HCP config support 2023-09-07 17:26:10 -07:00
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 Add basic oscdimg detection on Windows 2025-05-20 17:52:39 -07:00
plugins Merge pull request #13671 from hashicorp/hyperv-cloud-init 2025-05-21 09:33:03 -07:00
scripts add missing license headers and update copyright file headers to BUS-1.1 2023-08-10 21:53:25 +01:00
tasks Update test output to only show progress 2023-09-14 16:15:02 -07:00
templates Add basic oscdimg detection on Windows 2025-05-20 17:52:39 -07:00
test Merge pull request #13670 from hashicorp/fix-hyperv-diff-import 2025-05-21 09:25:34 -07:00
website Release 2.4.6 2025-05-21 22:45:19 +00: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 Release 2.4.6 2025-05-21 22:45:19 +00:00
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 Release 2.4.6 2025-05-21 22:45:19 +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!