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)
87var 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); 269return new ProcessSpec(RuntimeExecutable) 274_logger.LogDebug("{RuntimeName} (stdout): {Output}", RuntimeExecutable, output); 278_logger.LogDebug("{RuntimeName} (stderr): {Error}", RuntimeExecutable, error);