13 lines
362 B
Plaintext
13 lines
362 B
Plaintext
|
|
# | Runtime abstraction configuration schema
|
||
|
|
# | Provides unified configuration for Docker, Podman, OrbStack, Colima, nerdctl
|
||
|
|
# | Migrated from: provisioning/kcl/integrations/runtime.k
|
||
|
|
|
||
|
|
{
|
||
|
|
runtime_config = {
|
||
|
|
preferred = "docker",
|
||
|
|
check_order = ["docker", "podman", "orbstack", "colima", "nerdctl"],
|
||
|
|
timeout_secs = 5,
|
||
|
|
enable_cache = true,
|
||
|
|
},
|
||
|
|
}
|