项目作者: elie29

项目描述 :
Vagrant provisions
高级语言: Ruby
项目地址: git://github.com/elie29/vagrant.git
创建时间: 2017-10-12T19:05:49Z
项目社区:https://github.com/elie29/vagrant

开源协议:

下载


vagrant

Standalone

It is used to launch a standalone server

Servers

It is used to launch db and web servers

Commands

vagrant init ubuntu/trusty64:
This command adds a new ubunty virtual machine in your current folder

vagrant up:
This gets your virtual machine up and running again.

vagrant status:
This command will show you the current status of the virtual machine.

vagrant suspend:
This command suspends your virtual machine. All of your work is saved and the machine is put into a “sleep mode” of sorts.

vagrant ssh:
This command will actually connect to and log you into your virtual machine.

vagrant halt:
This command halts your virtual machine. All of your work is saved and the machine is turned off - think of this as “turning the power off”.

vagrant destroy:
This command destroys your virtual machine.

vagrant box update:
This command updates your boxes.

vagrant box prune:
This commande removes old boxes.