Refactors Docker Compose and updates deployment guides#97
Merged
Conversation
Reorganizes the Docker Compose configuration into modular stacks for Keycloak and the application. This change updates the environment variable templates and provides new, detailed documentation for local container setup and realm configuration.
|
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 free
to 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.
Decomposes the Docker Compose setup into separate files for improved modularity and clarity:
keycloak-compose.yaml, distinct from the NoteBookmark application services (API and Blazor app) now defined innote-compose.yaml. This allows for independent management of the authentication infrastructure.keycloak-container-setup.mdto guide users through deploying a Keycloak container stack. It also refineskeycloak-setup.mdto focus exclusively on Keycloak realm and client configuration for NoteBookmark.docker-compose-deployment.mdto provide a clearer, more concise process for deploying the NoteBookmark application, assuming Keycloak is already set up and configured..env-sampleto reflect the new Keycloak and PostgreSQL environment variables and includes a placeholder for the Reka AI API key.docker-compose.yamland thebuild-and-push.ps1script, streamlining the project's container orchestration assets.README.mdto highlight different run options (Aspire vs. containers) and directs users to the revised documentation for detailed setup.