Last active
December 19, 2015 09:39
-
-
Save yandod/5934790 to your computer and use it in GitHub Desktop.
超シンプルなVagrantfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
# Every Vagrant virtual environment requires a box to build off of. | |
config.vm.box = "precise64-vanilla" | |
config.vm.box_url = "https://dl.dropboxusercontent.com/u/165709740/boxes/precise64-vanilla.box" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
使い方。
VirutalBoxをダウンロードしインストール。
https://www.virtualbox.org/wiki/Downloads
Vagrantをダウンロードしインストール。
http://downloads.vagrantup.com/tags/v1.2.4
プロジェクト用のディレクトリを作り、Vagrantfileをダウンロードしてディレクトリ内に配置
cd プロジェクトディレクトリ
vagrant up
初回のに数百メガのダウンロードが発生。