Skoging.Aspire.Hosting.Komodo 0.1.0-alpha.2.2

This is a prerelease version of Skoging.Aspire.Hosting.Komodo.
dotnet add package Skoging.Aspire.Hosting.Komodo --version 0.1.0-alpha.2.2
 
NuGet\Install-Package Skoging.Aspire.Hosting.Komodo -Version 0.1.0-alpha.2.2
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Skoging.Aspire.Hosting.Komodo" Version="0.1.0-alpha.2.2" />
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Skoging.Aspire.Hosting.Komodo" Version="0.1.0-alpha.2.2" />
 
Directory.Packages.props
<PackageReference Include="Skoging.Aspire.Hosting.Komodo" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Skoging.Aspire.Hosting.Komodo --version 0.1.0-alpha.2.2
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Skoging.Aspire.Hosting.Komodo, 0.1.0-alpha.2.2"
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Skoging.Aspire.Hosting.Komodo@0.1.0-alpha.2.2
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Skoging.Aspire.Hosting.Komodo&version=0.1.0-alpha.2.2&prerelease
 
Install as a Cake Addin
#tool nuget:?package=Skoging.Aspire.Hosting.Komodo&version=0.1.0-alpha.2.2&prerelease
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Skoging.Aspire.Hosting.Komodo

A Komodo deploy target for .NET Aspire: aspire deploy ships your app's emitted Docker Compose stack to a Komodo server via its API, aspire publish emits a GitOps-friendly Resource-Sync TOML, and aspire destroy tears the stack down again. Nothing runs on your local machine.

⚠️ Experimental / alpha. Built on Aspire 13.x [Experimental] pipeline APIs; pinned to Aspire 13.4, targets net10.0. API will change before 1.0.

builder.AddDockerComposeEnvironment("compose")
 .WithKomodoDeploySupport(builder.Configuration.GetSection("Komodo"));

Configure Komodo:CoreUrl, Komodo:ApiKey, Komodo:ApiSecret, Komodo:ServerName (+ optional StackName, RegistryProvider/RegistryAccount for private images).

Highlights:

  • Resource-type-agnostic — deploys whatever compose Aspire emits; depends only on Aspire.Hosting + Aspire.Hosting.Docker.
  • Secrets stay out of the stored compose.Secret parameters are vaulted as Komodo Variables and injected via compose_cmd_wrapper (pluggable ISecretProvider — implement it to back secrets with an external vault).
  • Existing-resource familyPublishAsExisting / RunAsExisting / AsExisting redirect dependents to an already-running instance (e.g. a shared postgres) instead of deploying one.
  • Join shared external networksresource.WithExternalNetwork("name") attaches the emitted compose service to a pre-existing external docker network (a shared collector or database network) and declares it external: true at the top level — no hand-rolled ConfigureComposeFile / PublishAsDockerComposeService escape hatches. Publish-only; idempotent across many joiners.
  • Stack-unique internal references — on aspire publish each internal service gets a stack-unique container_name and its bare-alias references (http://api:8080) are rewritten to match (http://{stack}-api:8080), so stacks sharing an external docker network can never round-robin onto each other's services. Externally-exposed services are left to the ingress provider; no hand-pinned service URLs needed.

Pairs with (but does not depend on) Skoging.Aspire.Hosting.Pangolin for ingress. Full docs: https://github.com/skoging/aspire-extensions

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed.
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0-alpha.2.2 58 6/24/2026
0.1.0-alpha.2.1 57 6/24/2026
0.1.0-alpha.2 59 6/13/2026