fix: update PostgreSQL configuration instructions for Docker environment - #65
Merged
Conversation
- Clarify DATABASE_URL usage for Docker environment
ifrunruhin12
requested changes
Jan 7, 2026
ifrunruhin12
left a comment
Collaborator
There was a problem hiding this comment.
change this and we are good to go
Comment on lines
+58
to
+70
| ```bash | ||
| # ❌ Incorrect for Docker | ||
| DATABASE_URL=postgresql://postgres:password@localhost:5432/voice_collection | ||
|
|
||
| # ✅ Correct for Docker | ||
| DATABASE_URL=postgresql://postgres:password@postgres:5432/voice_collection | ||
|
|
||
| # ❌ Incorrect for Docker | ||
| REDIS_URL=redis://localhost:6379/0 | ||
|
|
||
| # ✅ Correct for Docker | ||
| REDIS_URL=redis://redis:6379/0 | ||
| ``` |
Collaborator
There was a problem hiding this comment.
Remove these emojis please. only saying correct and incorrect is enough. as you will notice our documentation has very minimal (close to none) emoji usage right now. some place where there is still irrelevant emoji we will remove most of it as well. but when adding new doc we won't be adding emojis anymore cause our docs was designed with visually appealing theme to begin with
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.
Description
This PR fixes and clarifies PostgreSQL configuration instructions in the Docker documentation.
Type of Change
Changes Made
.envTesting Checklist
Code Quality Checklist
Additional Context
N/A