-
Notifications
You must be signed in to change notification settings - Fork 9
fix(docker compose): remove /data in postgres mount #918
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
base: main
Are you sure you want to change the base?
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #918 +/- ##
=======================================
Coverage 84.87% 84.87%
=======================================
Files 193 193
Lines 13895 13895
=======================================
Hits 11793 11793
Misses 2102 2102 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| image: postgres | ||
| container_name: hyperion-db-dev | ||
| restart: unless-stopped | ||
| environment: | ||
| POSTGRES_HOST: ${POSTGRES_HOST} | ||
| POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} | ||
| POSTGRES_USER: ${POSTGRES_USER} | ||
| POSTGRES_DB: ${POSTGRES_DB} | ||
| PGTZ: ${POSTGRES_TZ} | ||
| ports: | ||
| - 5432:5432 | ||
| volumes: | ||
| - hyperion_db_data:/var/lib/postgresql/data | ||
| - hyperion_db_data:/var/lib/postgresql | ||
|
|
||
| hyperion-redis: | ||
| image: redis |
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.
Consider instead setting explicit version tags, for consistency with the other Hyperion-related compose files. This issue seems specific to the new major Postgres 18.
| image: redis | |
| image: postgres:15.1 | |
| container_name: hyperion-db-dev | |
| restart: unless-stopped | |
| environment: | |
| POSTGRES_HOST: ${POSTGRES_HOST} | |
| POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} | |
| POSTGRES_USER: ${POSTGRES_USER} | |
| POSTGRES_DB: ${POSTGRES_DB} | |
| PGTZ: ${POSTGRES_TZ} | |
| ports: | |
| - 5432:5432 | |
| volumes: | |
| - hyperion_db_data:/var/lib/postgresql/data | |
| hyperion-redis: | |
| image: redis:7.0-alpine |
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.
completely broken GH interface...
Description
Summary
The change is required for the latest postgresql image
Issues/PR dependencies
Issues to be resolved
Required PRs
Changes Made
Additional Notes
Classification
Type of Change
Impact & Scope
Testing
Documentation
"Docstrings#Inline comments