13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VagrantをParallelsで使ってみた

13
Last updated at Posted at 2014-09-24
plugin
vagrant plugin install vagrant-parallels
init
vagrant init parallels/boot2docker

vagrant up

vagrant up --provider=parallels

もしくは~/.zshrcに以下追記、読み込んでからvagrant up

~/.zshrc
export VAGRANT_DEFAULT_PROVIDER=parallels

synced_folder

Vagrantfile
+ config.vm.network "private_network", ip: "192.168.33.10"
+ config.vm.synced_folder ".", "/vagrant_data", type: "nfs"

注意点

13
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?