mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
a7cd184e07
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Lena Pastwa <lena@lnps.me>
788 B
788 B
vagrant init
Initialize a Vagrant environment in the current directory by creating a
Vagrantfile. See also:vagrant. More information: https://developer.hashicorp.com/vagrant/docs/cli/init.
- Create a
Vagrantfile:
vagrant init
- Create a
Vagrantfilewithout instructional comments:
vagrant init {{[-m|--minimal]}}
- Specify the box name and URL:
vagrant init {{box_name}} {{box_url}}
- Create a
Vagrantfilewith a specific box version:
vagrant init --box-version {{version}} {{box_name}}
- Send the
Vagrantfiletostdout:
vagrant init {{[-o|--output]}} -
- Overwrite an existing
Vagrantfile:
vagrant init {{[-f|--force]}}
- Provide a custom ERB template for generating the
Vagrantfile:
vagrant init --template {{path/to/file.erb}}