-
Notifications
You must be signed in to change notification settings - Fork 227
github actions fail when redis tries to save an RDB snapshot #7
Comments
I'll save people the scrolling on the failing build:
Would be nice if the default redis service for github actions didn't try and save an RDB snapshot. |
This is not specific to GitHub Actions as we do not do any configuration of REDIS. The example here simply launches the container that is on dockerhub. A quick search shows a few different options but none of them seem to be straight forward. |
I'm working around this by re-configuring Redis from the client, I went to dockerhub to see if I can find a way to report issues on the docker image and people in the comments are complaining that the redis image has a trojan: https://hub.docker.com/_/redis/?tab=reviews Do we know if this is fake news? |
i don't know any specific details about that issue with Redis. |
Turns out if you override the entrypoint to redis-server it runs without issue. It looks like it was due to a permissions issue, due to running as root - which the redis-server entrypoint handles for.
|
reproduced in PR #6
not sure what the solution to this, but I'm guessing most CI jobs don't need to persist their redis data
The text was updated successfully, but these errors were encountered: