vagrant 入門4

7. 打包 Packaging
  1. 建立一個新的文件Vagrantfile.pkg,內容以下: 

 
     
     
     
  
   
  1. Vagrant::Config.run do |config|
  2. # Forward apache
  3. config.vm.forward_port 80, 8080
  4. end

2. 打包Project Vagrant::Config.run do |config| # Forward apache config.vm.forward_port 80, 8080 end
     
     
     
  
   
  1. $ vagrant package --vagrantfile Vagrantfile.pkg

$ vagrant package --vagrantfile Vagrantfile.pkg
8. 打包完成後,在工程根目錄下就會生成package.box,別人就可使用這個Box了:
  
  
  
  
    
    
    
    

$ vagrant box add my_box /path/to/the/package.box $ vagrant init my_box $ vagrant up


相關文章
相關標籤/搜索