Vagrant 筆記
需搭配 Virtual Box 使用
兩項都裝好之後
新增 Box 指令
$ vagrant box add {自訂名稱} {網址}
Box 版本可在 這裡 找
列出目前的 Box
$ vagrant box list
產生設定檔
$ vagrant init {Box 名稱}
啟動 VM
$ vagrant up
ssh 到 VM
$ vagrant ssh
其他指令
查看VM 狀態
$ vagrant status
關閉VM
$ vagrant halt
暫停VM
$ vagrant suspend
恢復暫停的VM
$ vagrant resume
重啓VM
$ vagrant reload
移除VM Box
$ vagrant box remove {Box 名稱}
移除VM Instance
$ vagrant destroy