mirror of
https://github.com/containers/podman.git
synced 2025-07-18 01:57:24 +08:00

**podman compose** is a thin wrapper around an external compose provider such as docker-compose or podman-compose. This means that `podman compose` is executing another tool that implements the compose functionality but sets up the environment in a way to let the compose provider communicate transparently with the local Podman socket. The specified options as well the command and argument are passed directly to the compose provider. The default compose providers are `docker-compose` and `podman-compose`. If installed, `docker-compose` takes precedence since it is the original implementation of the Compose specification and is widely used on the supported platforms (i.e., Linux, Mac OS, Windows). If you want to change the default behavior or have a custom installation path for your provider of choice, please change the `compose_provider` field in `containers.conf(5)`. You may also set the `PODMAN_COMPOSE_PROVIDER` environment variable. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
33 lines
870 B
Go
33 lines
870 B
Go
package config
|
|
|
|
// DefaultInitPath is the default path to the container-init binary.
|
|
var DefaultInitPath = "/usr/local/libexec/podman/catatonit"
|
|
|
|
func getDefaultCgroupsMode() string {
|
|
return "enabled"
|
|
}
|
|
|
|
// In theory, FreeBSD should be able to use shm locks but in practice,
|
|
// this causes cryptic error messages from the kernel that look like:
|
|
//
|
|
// comm podman pid 90813: handling rb error 22
|
|
//
|
|
// These seem to be related to fork/exec code paths. Fall back to
|
|
// file-based locks.
|
|
func getDefaultLockType() string {
|
|
return "file"
|
|
}
|
|
|
|
func getLibpodTmpDir() string {
|
|
return "/var/run/libpod"
|
|
}
|
|
|
|
// getDefaultMachineVolumes returns default mounted volumes (possibly with env vars, which will be expanded)
|
|
func getDefaultMachineVolumes() []string {
|
|
return []string{"$HOME:$HOME"}
|
|
}
|
|
|
|
func getDefaultComposeProviders() []string {
|
|
return defaultUnixComposeProviders
|
|
}
|