Fix parse env vars & add labels for store deploy command

Signed-off-by: Minh-Quan TRAN <account@itscaro.me>
This commit is contained in:
Minh-Quan TRAN
2018-02-01 10:13:40 +01:00
committed by Alex Ellis
parent a81705b7f5
commit fabe085362
2 changed files with 13 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ package schema
// StoreItem represents an item of store
type StoreItem struct {
Icon string `json:"icon"`
Title string `json:"title"`
Description string `json:"description"`
Image string `json:"image"`
@@ -10,4 +11,5 @@ type StoreItem struct {
Network string `json:"network"`
RepoURL string `json:"repo_url"`
Environment map[string]string `json:"environment"`
Labels map[string]string `json:"labels"`
}