mirror of
https://github.com/containers/podman.git
synced 2025-06-29 23:22:40 +08:00

This allows us to redefine to the equivalent nullfs on FreeBSD. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
11 lines
232 B
Go
11 lines
232 B
Go
package define
|
|
|
|
const (
|
|
// TypeVolume is the type for named volumes
|
|
TypeVolume = "volume"
|
|
// TypeTmpfs is the type for mounting tmpfs
|
|
TypeTmpfs = "tmpfs"
|
|
// TypeDevpts is the type for creating a devpts
|
|
TypeDevpts = "devpts"
|
|
)
|