LoginSignup
1
0

More than 5 years have passed since last update.

/vagrantフォルダをmountしない

Posted at

概要

あまり利用していないので、/vagrantフォルダが自動でmountされるのを解除したくて調べた内容をメモしておく。

Vagrantfile

設定をOFFにする。

Vagrantfile
Vagrant.configure('2') do |config|
  config.vm.synced_folder '.', '/vagrant', disabled: true
end

これだけだとちょっと少な過ぎるので、存在しないフォルダにNFSでマウントする方法も追記。

Vagrantfile
Vagrant.configure('2') do |config|
  config.vm.synced_folder '.', '/vagrant', disabled: true
  config.vm.synced_folder "./opt/", "/home/docker/opt/", :nfs => true
end

参考サイト

1
0
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
1
0