コンテンツにスキップ

コマンド@Vagrant

はじめに

本サイトにつきまして、以下をご認識のほど宜しくお願いいたします。


01. vagrantコマンド

box add

ボックスをインストールする。

$ vagrant box add <ボックス名> <URL>


box list

インストールできるボックス名の一覧を取得する。

$ vagrant box list


global-status

起動中の仮想環境の一覧を取得する。

$ vagrant global-status


halt

仮想環境を停止する。

$ vagrant halt


reload

仮想環境を再起動する。

$ vagrant reload


ssh

仮想環境にSSH公開鍵認証で接続する。

$ vagrant ssh


up

仮想環境を起動する。

$ vagrant up