2 overrides of RuntimeExecutable
Aspire.Hosting (2)
Publishing\DockerContainerRuntime.cs (1)
17
protected override string
RuntimeExecutable
=> "docker";
Publishing\PodmanContainerRuntime.cs (1)
16
protected override string
RuntimeExecutable
=> "podman";
7 references to RuntimeExecutable
Aspire.Hosting (7)
Publishing\ContainerRuntimeBase.cs (7)
87
var spec = new ProcessSpec(
RuntimeExecutable
)
93
_logger.LogDebug("{RuntimeName} (stdout): {Output}",
RuntimeExecutable
, output);
97
_logger.LogDebug("{RuntimeName} (stderr): {Error}",
RuntimeExecutable
, error);
103
_logger.LogDebug("Running {RuntimeName} with arguments: {Arguments}",
RuntimeExecutable
, arguments);
269
return new ProcessSpec(
RuntimeExecutable
)
274
_logger.LogDebug("{RuntimeName} (stdout): {Output}",
RuntimeExecutable
, output);
278
_logger.LogDebug("{RuntimeName} (stderr): {Error}",
RuntimeExecutable
, error);