Pass server mounts into docker

This commit is contained in:
Matthew Penner
2020-05-21 14:53:00 -06:00
parent bd063682dc
commit 662eb17241
3 changed files with 45 additions and 23 deletions

8
server/mount.go Normal file
View File

@@ -0,0 +1,8 @@
package server
// Mount represents a Server Mount.
type Mount struct {
Target string `json:"target"`
Source string `json:"source"`
ReadOnly bool `json:"read_only"`
}