feat(deploy): Add Docker Compose deployment for NAS/HomeServer#64
Open
vincent067 wants to merge 1 commit intoAVIDS2:mainfrom
Open
feat(deploy): Add Docker Compose deployment for NAS/HomeServer#64vincent067 wants to merge 1 commit intoAVIDS2:mainfrom
vincent067 wants to merge 1 commit intoAVIDS2:mainfrom
Conversation
Add docker-compose.yml with the following features: - Standard HTTP mode service configuration - Health checks for container monitoring - Persistent volume for data storage - Optional Traefik reverse proxy profile - Environment variable support via .env file Add comprehensive deployment guide (docs/CONTAINER_DEPLOYMENT.md): - Quick start instructions - NAS-specific guides (Synology, QNAP, Unraid, TrueNAS) - Data backup/restore procedures - Troubleshooting section Update .env.example with container deployment variables: - MEMORIX_PORT for port mapping - HOST_PROJECTS_DIR for volume mounts - ACME_EMAIL for Let's Encrypt (optional) Closes AVIDS2#6
AVIDS2
requested changes
Apr 8, 2026
Owner
AVIDS2
left a comment
There was a problem hiding this comment.
Thanks for contributing this — deployment support is valuable, and the docs effort is appreciated. There is one blocker we need fixed before we can accept it: the repository Dockerfile currently defaults to CMD ["serve"], which starts the stdio MCP server, but this compose file does not override the command to serve-http. As written, the container will not actually start the HTTP control plane/dashboard that the documentation describes on port 3211. Please update the compose service to explicitly run the HTTP server path (for example serve-http with the appropriate port/cwd arguments), then we can re-review the deployment flow.
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.
Hi there! 👋
I've been using memorix for a while now and absolutely love how it helps me manage my bookmarks and reading list. It's become an essential part of my daily workflow!
I noticed that while the project has excellent documentation for local development, there wasn't a straightforward way to deploy it on my home NAS using Docker Compose. So I decided to contribute back by adding containerized deployment support.
What's Included
🐳 docker-compose.yml
📚 Deployment Documentation
✅ Testing
Why This Helps
This makes it super easy for users who want to self-host memorix on their home servers without diving deep into manual Docker commands. Just a simple and you're good to go!
Hope this helps the community. Happy to make any adjustments based on feedback.
Thanks for building such a great tool! 🙏