Docker image + .NET Aspire integration + proxy samples (issue #10) - #11
Merged
Conversation
MPCoreDeveloperforce-pushed
the
feature/issue-10-docker-aspire
branch
2 times, most recently
from
September 5, 2026 10:11
b74f9b4 to
8550085CompareImplements GitHub issue #10 (Docker image for SCDMS + .NET Aspire integration + Compose samples): - SCDMS.Aspire.Hosting NuGet package (AddSCDMS, WithGrpcReference) + AppHost example (examples/Aspire) - Docker publish + NuGet publish workflows; solution + CPM wiring; global.json (net10 SDK) - Compose samples: Caddy (samples/docker), YARP all-.NET (samples/yarp), HAProxy + automatic ACME variant (samples/haproxy) - Docs: docs/aspire.md, docs/container-and-aspire-guide.md, README, usage
MPCoreDeveloperforce-pushed
the
feature/issue-10-docker-aspire
branch
from
September 5, 2026 10:14
8550085 to
f7ccbc3CompareUh oh!
There was an error while loading. Please reload this page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Closes#10
Implements all three parts of the issue:
1. Official Docker image for SCDMS
Dockerfile+.github/workflows/docker-publish.yml(linux/amd64+linux/arm64).ghcr.io/mpcoredeveloper/scdmson the nextv*tag.docker build -t ghcr.io/mpcoredeveloper/scdms:latest .2. .NET Aspire integration (pgweb/pgAdmin-style)
SCDMS.Aspire.Hostingpackage (AddSharpCoreDB+AddSCDMS+WithGrpcReference), wired viaSCDMS__DefaultServer*env vars over gRPC.examples/Aspire/SCDMS.AppHost.SharpCoreDB.Aspire.Hosting2.0.0.2..github/workflows/nuget-publish.yml).3. Docker Compose samples (three proxy options)
samples/docker/samples/yarp/samples/haproxy/Docs
docs/aspire.md(status -> implemented)docs/container-and-aspire-guide.md(run & test guide for both options, incl. TLS notes)Testing
See the run & test guide (
docs/container-and-aspire-guide.md, section 5 = full end-to-end local recipe).Quick start:
dotnet run --project examples/Aspire/SCDMS.AppHostorcd samples/docker && docker compose up -d.