virtualbox+vagrant學習-2(command cli)-8-vagrant Package命令
阿新 • • 發佈:2018-12-25
Package
格式:
vagrant package [options] [name|id]
這將當前正在執行的VirtualBox或Hyper-V環境打包到一個可重用的box中。如果provider支援的話,此命令只能與基於provider實現的其他provider一起使用。
userdeMacBook-Pro:~ user$ vagrant package -h Usage: vagrant package [options] [name|id] Options: --base NAME Name of a VM inVirtualBox to package as a base box (VirtualBox Only) 在VirtualBox中要打包為基本box(僅適用於VirtualBox)的虛擬機器的名稱 --output NAME Name of the file to output 輸出的檔案的名稱 --include FILE,FILE.. Comma separated additional files to package with the box 逗號分隔要打包的附加檔案--vagrantfile FILE Vagrantfile to package with the box 和box一起打包的Vagrantfile檔案 -h, --help Print this help列印幫助資訊
⚠️一個常見的誤解是:
--vagrantfile選項將打包一個在此box中使用vagrant init時使用的vagrantfile檔案。事實並非如此。相反,在使用該box時,vagrantfile檔案將作為vagrant載入過程的一部分來被載入和讀取。要了解更多資訊,請閱讀Vagrantfile load order