mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
This PR reflects the upstream change of moving the buildah module from github.com/containers/buildah to go.podman.io/buildah. Signed-off-by: Brent Baude <bbaude@redhat.com>
14 lines
250 B
Go
14 lines
250 B
Go
//go:build linux
|
|
|
|
package define
|
|
|
|
const (
|
|
// TypeBind is the type for mounting host dir
|
|
TypeBind = "bind"
|
|
|
|
// TempDir is the default for storing temporary files
|
|
TempDir = "/dev/shm"
|
|
)
|
|
|
|
// Mount potions for bind
|
|
var BindOptions = []string{"bind"}
|