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)
96
var spec = new ProcessSpec(
RuntimeExecutable
)
102
_logger.LogDebug("{RuntimeName} (stdout): {Output}",
RuntimeExecutable
, output);
106
_logger.LogDebug("{RuntimeName} (stderr): {Error}",
RuntimeExecutable
, error);
112
_logger.LogDebug("Running {RuntimeName} with arguments: {Arguments}",
RuntimeExecutable
, arguments);
278
return new ProcessSpec(
RuntimeExecutable
)
283
_logger.LogDebug("{RuntimeName} (stdout): {Output}",
RuntimeExecutable
, output);
287
_logger.LogDebug("{RuntimeName} (stderr): {Error}",
RuntimeExecutable
, error);