facebook twitter hatena line email

「仮想サーバ/vagrant」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==vagrantダウンロード== https://www.vagrantup.com/downloads.html ==Vagrantfile作成== $ vi Vagrantfile Vagrant.configure("2") do |config| config.vm.box = "has...」)
 
行7: 行7:
 
   config.vm.box = "hashicorp/precise64"
 
   config.vm.box = "hashicorp/precise64"
 
  end
 
  end
 +
 +
==仮想マシン起動==
 +
$ vagrant up

2016年2月8日 (月) 10:35時点における版

vagrantダウンロード

https://www.vagrantup.com/downloads.html

Vagrantfile作成

$ vi Vagrantfile
Vagrant.configure("2") do |config|
 config.vm.box = "hashicorp/precise64"
end

仮想マシン起動

$ vagrant up