Files
podman/libpod/define/mount_freebsd.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
176 B
Go

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