Skip to content

Commit

Permalink
fix #95 - change ports to array of strings
Browse files Browse the repository at this point in the history
  • Loading branch information
cplee committed Feb 25, 2020
1 parent 51b6167 commit ead2ab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/model/workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func commonKeysMatch(a map[string]interface{}, b map[string]interface{}) bool {
type ContainerSpec struct {
Image string `yaml:"image"`
Env map[string]string `yaml:"env"`
Ports []int `yaml:"ports"`
Ports []string `yaml:"ports"`
Volumes []string `yaml:"volumes"`
Options string `yaml:"options"`
Entrypoint string
Expand Down

0 comments on commit ead2ab4

Please sign in to comment.