-
Notifications
You must be signed in to change notification settings - Fork 88
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
Pin redis image version in docker compose file #1745
Comments
@ffont could you let me know what version we should pin to match the one currently running in production? |
Hi, in production we use an image called |
The version of redis on the upf registry is exactly the same as the one on docker hub, we mirror it to prevent rate limit pull issues from docker hub. Regarding the local version of redis - this is only used for development, and we don't have any volumes to save the database anyway. Because of this, I'm not too worried about the version unexpectedly being upgraded. If there was a data issue, this would be resolved by |
Does this mean we now run version 7 aka latest? I think it would still be helpful to pin or mark a version somehow somewhere to know what version of redis-py we should use. |
Currently we use the
redis:alpine
image tag which might resolve to a different image (with a "new" redis version on pull)We should instead use a
redis:<version>-alpine
tag.See the list of supported versions/tags
The text was updated successfully, but these errors were encountered: