vagrant_copy - choisungwook/portfolio GitHub Wiki

개요

  • vagrant 파일 복사

세부내용

  • vagrant file 플러그인 사용 [vm].vm.provision "file", source: "", destination: ""
Vagrant.configure("2") do |config|

  # example vm
  config.vm.define BOOTSTRAP_NAME do |cfg|
    ...

    # copy 
    cfg.vm.provision "file", source: "files/bootstrap.sh", destination: "bootstrap.sh"    
  end
⚠️ **GitHub.com Fallback** ⚠️