Files
podman/libpod/define/mount_linux.go
Doug Rabson 865d77e942 pkg/specgen: add support for 'podman run --init' on FreeBSD
This adds define.BindOptions to declare the mount options for bind-like
mounts (nullfs on FreeBSD). Note: this mirrors identical declarations in
buildah and it may be preferable to use buildah's copies throughout
podman.

[NO NEW TESTS NEEDED]

Signed-off-by: Doug Rabson <dfr@rabson.org>
2023-06-28 14:43:50 +01:00

14 lines
178 B
Go

//go:build linux
package define
const (
// TypeBind is the type for mounting host dir
TypeBind = "bind"
)
var (
// Mount potions for bind
BindOptions = []string{"bind"}
)