Implemented interface member:
property
Name
Aspire.Hosting.Publishing.IContainerRuntime.Name
2 overrides of Name
Aspire.Hosting (2)
Publishing\DockerContainerRuntime.cs (1)
18public override string Name => "Docker";
Publishing\PodmanContainerRuntime.cs (1)
17public override string Name => "Podman";
14 references to Name
Aspire.Hosting (14)
Publishing\ContainerRuntimeBase.cs (14)
48$"{Name} tag for {{LocalImageName}} -> {{TargetImageName}} failed with exit code {{ExitCode}}.", 49$"{Name} tag for {{LocalImageName}} -> {{TargetImageName}} succeeded.", 50$"{Name} tag failed with exit code {{0}}.", 61$"{Name} rmi for {{ImageName}} failed with exit code {{ExitCode}}.", 62$"{Name} rmi for {{ImageName}} succeeded.", 63$"{Name} rmi failed with exit code {{0}}.", 82$"{Name} push for {{ImageName}} failed with exit code {{ExitCode}}.", 83$"{Name} push for {{ImageName}} succeeded.", 84$"{Name} push failed with exit code {{0}}.", 124_logger.LogError("{RuntimeName} login to {RegistryServer} failed with exit code {ExitCode}.", Name, registryServer, processResult.ExitCode); 125throw new DistributedApplicationException($"{Name} login failed with exit code {processResult.ExitCode}."); 128_logger.LogInformation("{RuntimeName} login to {RegistryServer} succeeded.", Name, registryServer); 151_logger.LogDebug("Running {RuntimeName} with arguments: {ArgumentList}", Name, spec.Arguments); 200_logger.LogDebug("Running {RuntimeName} with arguments: {ArgumentList}", Name, spec.Arguments);