Skip to content

Commit

Permalink
remove inner array
Browse files Browse the repository at this point in the history
  • Loading branch information
senyosimpson committed Jan 10, 2025
1 parent 407f0e8 commit 1bf53e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion machine_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -821,8 +821,9 @@ type ContainerConfig struct {
Mounts []ContainerMount `json:"mounts,omitempty"`
}

// TODO: Add volume mount when supported
type ContainerMount struct {
SharedMount []SharedMount `json:"shared_mounts,omitempty"`
SharedMount *SharedMount `json:"shared_mount,omitempty"`
}

// A shared mount is a folder that can be shared between multiple containers. This is often used
Expand Down

0 comments on commit 1bf53e2

Please sign in to comment.