libpod: Use platform-specific mount type for volume mounts

[NO NEW TESTS NEEDED]

Signed-off-by: Doug Rabson <dfr@rabson.org>
This commit is contained in:
Doug Rabson
2022-08-27 13:49:43 +01:00
parent c1a86a8c4c
commit 0889215d83
3 changed files with 12 additions and 3 deletions

View File

@ -51,6 +51,10 @@ import (
"golang.org/x/sys/unix"
)
var (
bindOptions = []string{}
)
// Network stubs to decouple container_internal_freebsd.go from
// networking_freebsd.go so they can be reviewed separately.
func (r *Runtime) createNetNS(ctr *Container) (netJail string, q map[string]types.StatusBlock, retErr error) {