原文地址html
建立 Vagrant 的 box 時,能夠提供在運行 vagrant box list -i
時展現的與用戶相關的其餘信息。例如,能夠打包 box,以包含有關該 box 的做者和網站信息:web
brian@localghost % vagrant box list -i
hashicorp/precise64 (virtualbox, 1.0.0)
- author: brian - homepage: https://www.vagrantup.com
爲了實現這個目標,只須要在建立一個基本 box 時包含一個名爲 info.json
的 JSON 文檔,其中包含全部相關信息,當 -i
選項與 vagrant box 列表一塊兒使用時,將顯示給用戶。json
{
"author": "brian",
"homepage": "https://example.com" }
info.json
中沒有特殊的鍵或值,Vagrant 會在每行上打印每一個鍵和值。ruby
Box File Format 提供了關於打包進 Vagrant box 的內容的更多信息。svg