7. 打包 Packaging
1. 建立一個新的文件Vagrantfile.pkg,內容以下:
Vagrant::Config.run do |config|
# Forward apache
config.vm.forward_port 80, 8080
end
2. 打包Project Vagrant::Config.run do |config| # Forward apache config.vm.forward_port 80, 8080 end
$ 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