1
0
mirror of https://github.com/containers/buildah.git synced 2026-02-05 09:45:38 +01:00
Files
buildah/define/mount_freebsd.go
Nalin Dahyabhai 8ae99121c1 CI: enable the gofumpt linter
Turn on the gofumpt linter.

Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
2024-08-15 13:17:44 -04:00

15 lines
248 B
Go

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