Feat/docker hub publish#7
Merged
Merged
Conversation
kushvinth
added a commit
that referenced
this pull request
Apr 5, 2026
* fix: docker compose lint * feat: docker hub ci * chore: linting * feat: publish to ghrc
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.
This pull request introduces automated workflows for building and publishing Docker images to both Docker Hub and GitHub Container Registry (GHCR), and updates the
docker-compose.ymlconfiguration to support these changes. The updates also add flexibility by allowing backend and frontend port configuration via environment variables and improving CORS origin handling.CI/CD automation:
.github/workflows/docker-publish.ymlto build and push both backend and frontend Docker images to Docker Hub on every push to themainbranch..github/workflows/publish-ghrc.ymlto build and push both backend and frontend Docker images to GHCR on every push to themainbranch.Docker Compose configuration improvements:
docker-compose.ymlto use the published Docker images (kushvinth/zell:latest-backendandkushvinth/zell:latest-frontend) instead of only local builds.BACKEND_PORTandFRONTEND_PORTenvironment variables, improving deployment flexibility.CORS_ORIGINShandling to dynamically use the configured frontend port, reducing manual configuration and errors.