2 overrides of RuntimeExecutable
Aspire.Hosting (2)
Publishing\DockerContainerRuntime.cs (1)
17protected override string RuntimeExecutable => "docker";
Publishing\PodmanContainerRuntime.cs (1)
16protected override string RuntimeExecutable => "podman";
7 references to RuntimeExecutable
Aspire.Hosting (7)
Publishing\ContainerRuntimeBase.cs (7)
96var 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); 278return new ProcessSpec(RuntimeExecutable) 283_logger.LogDebug("{RuntimeName} (stdout): {Output}", RuntimeExecutable, output); 287_logger.LogDebug("{RuntimeName} (stderr): {Error}", RuntimeExecutable, error);