chore: remove unused MongoDB init script volume mount#90
Open
wucm667 wants to merge 1 commit intoEverMind-AI:mainfrom
Open
chore: remove unused MongoDB init script volume mount#90wucm667 wants to merge 1 commit intoEverMind-AI:mainfrom
wucm667 wants to merge 1 commit intoEverMind-AI:mainfrom
Conversation
- Removed ./docker/mongodb/init:/docker-entrypoint-initdb.d volume mount - The docker/mongodb/init directory never existed in the repository - MongoDB initialization is handled at the application layer (Beanie ODM + migration manager), not via Docker init scripts
There was a problem hiding this comment.
Pull request overview
Removes an unused/nonexistent MongoDB init-script volume mount from the Docker Compose configuration, aligning the local infrastructure setup with the repo’s actual structure and current MongoDB initialization approach.
Changes:
- Removed
./docker/mongodb/init:/docker-entrypoint-initdb.dfrom themongodbservice volume mounts.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Jah-yee
added a commit
to Jah-yee/EverMemOS
that referenced
this pull request
Mar 2, 2026
The ./docker/mongodb/init:/docker-entrypoint-initdb.d volume mount in docker-compose.yaml references a directory that never existed. MongoDB initialization is handled at the application layer (Beanie ODM + migration manager), not via Docker init scripts. Fixes EverMind-AI#90
Jah-yee
pushed a commit
to Jah-yee/EverMemOS
that referenced
this pull request
Mar 12, 2026
- Rename stage3_memory_retrivel.py to stage3_memory_retrieval.py (typo fix) - Replace == None with is None (Python anti-pattern) - Replace != True with is not True (Python anti-pattern) - Replace bare except with except Exception - Remove duplicate 'rrf' entry in docstring - Remove unused MongoDB init script volume mount from docker-compose.yaml - Add missing env template setup step in STARTER_KIT.md quick start Fixes: EverMind-AI#115, EverMind-AI#113, EverMind-AI#107, EverMind-AI#97, EverMind-AI#91, EverMind-AI#90, EverMind-AI#86
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.
./docker/mongodb/init:/docker-entrypoint-initdb.dvolume mount from docker-compose.yamldocker/mongodb/initdirectory never existed in the repository