-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comment out the postgres configuration from docker-compose.yml #504
Comment out the postgres configuration from docker-compose.yml #504
Conversation
WalkthroughThis pull request updates the docker-compose configuration by changing the CPU limit value for the cognee service from single to double quotes in the docker-compose.yml file. It also disables the postgres service and its associated volume (postgres_data) by commenting out their entire configurations. The overall file structure remains intact with only these selective modifications. Changes
Sequence Diagram(s):Possibly related PRs
Poem
Tip 🌐 Web search-backed reviews and chat
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
GitGuardian id | GitGuardian status | Secret | Commit | Filename | |
---|---|---|---|---|---|
9573981 | Triggered | Generic Password | 1ce9e16 | .env.template | View secret |
🛠 Guidelines to remediate hardcoded secrets
- Understand the implications of revoking this secret by investigating where it is used in your code.
- Replace and store your secret safely. Learn here the best practices.
- Revoke and rotate this secret.
- If possible, rewrite git history. Rewriting git history is not a trivial act. You might completely break other contributing developers' workflow and you risk accidentally deleting legitimate data.
To avoid such incidents in the future consider
- following these best practices for managing and storing secrets including API keys and other credentials
- install secret detection on pre-commit to catch secret before it leaves your machine and ease remediation.
🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (2)
docker-compose.yml (2)
63-77
: Commented Out PostgreSQL Service Block
The entire PostgreSQL service configuration has been successfully commented out to maintain visibility without activating it. This approach is thoughtful for newcomers who might need a reference configuration later.
• Note: There is a minor typo in the comment on line 77 ("VOLUES" should be "volumes").
82-85
: Cleaning Up Trailing Spaces in Comments
Lines 82–85 have trailing spaces (as flagged by YAMLlint). Although they are in comments, removing the extra whitespace will improve file cleanliness and prevent potential linter warnings. Consider applying a cleanup as shown below.Proposed diff:
🧰 Tools
🪛 YAMLlint (1.35.1)
[error] 82-82: trailing spaces
(trailing-spaces)
[error] 83-83: trailing spaces
(trailing-spaces)
[error] 84-84: trailing spaces
(trailing-spaces)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
docker-compose.yml
(2 hunks)
🧰 Additional context used
🪛 YAMLlint (1.35.1)
docker-compose.yml
[error] 82-82: trailing spaces
(trailing-spaces)
[error] 83-83: trailing spaces
(trailing-spaces)
[error] 84-84: trailing spaces
(trailing-spaces)
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: docker-compose-test
🔇 Additional comments (1)
docker-compose.yml (1)
22-23
: Updated CPU Limit Formatting
The change to use double quotes for the CPU limit value (cpus: "2.0") improves consistency in YAML formatting. Ensure that this change is aligned with your deployment expectations.
I wouldn't comment out postgres from docker compose since we use it all the time, you can run docker compose with specifying only the containers you need if you don't need postgres. |
I understand you guys are using postgres, but I was approaching this from the perspective of the experience of new community members who may not have docker experience or technical background. In that frame of mind, default should enable smoothest onboarding in the SQLite-NetworkX-LanceDB scenario, hence leaving *postgress details visible but commented. |
Description
Comment out the postgres configuration from docker-compose.yml. I think leaving postgres details commented is better than removing them entirely. This keeps simple optionality visible for newcomers.
DCO Affirmation
I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin
Summary by CodeRabbit