Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/docker/swarmkit into esc-…
Browse files Browse the repository at this point in the history
…1003
  • Loading branch information
Dani Louca committed Mar 4, 2019
2 parents 3a531f4 + e6e1f60 commit 50465cb
Show file tree
Hide file tree
Showing 399 changed files with 74,382 additions and 18,393 deletions.
1 change: 0 additions & 1 deletion .gometalinter.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"gofmt",
"goimports",
"golint",
"gosimple",
"ineffassign",
"deadcode",
"unconvert"
Expand Down
4 changes: 3 additions & 1 deletion agent/exec/dockerapi/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,9 @@ func convertMount(m api.Mount) enginemount.Mount {
}

if m.BindOptions != nil {
mount.BindOptions = &enginemount.BindOptions{}
mount.BindOptions = &enginemount.BindOptions{
NonRecursive: m.BindOptions.NonRecursive,
}
switch m.BindOptions.Propagation {
case api.MountPropagationRPrivate:
mount.BindOptions.Propagation = enginemount.PropagationRPrivate
Expand Down
Loading

0 comments on commit 50465cb

Please sign in to comment.