You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a custom Redis image (in my case, redis-stack-server:7.2.0), startup throws an error saying that the image is missing, when it isn't.
It looks like the startup script was first checking for the base redis image instead of the custom set image, causing it to actually detect that redis:7.2.0 was missing, before then applying the custom image and then falsely reporting redis-stack-server:7.2.0 was missing.
The temporary solution was as simple as just pulling redis:7.2.0, even though this image is not actually being used it allows the image validation to pass.
How reproducible
Easily, just start a new Redis server with a custom image, then restart the service.
Description of problem
When using a custom Redis image (in my case,
redis-stack-server:7.2.0
), startup throws an error saying that the image is missing, when it isn't.It looks like the startup script was first checking for the base
redis
image instead of the custom set image, causing it to actually detect thatredis:7.2.0
was missing, before then applying the custom image and then falsely reportingredis-stack-server:7.2.0
was missing.The temporary solution was as simple as just pulling
redis:7.2.0
, even though this image is not actually being used it allows the image validation to pass.How reproducible
Easily, just start a new Redis server with a custom image, then restart the service.
Steps to Reproduce
dokku redis:create [name] -i redis/redis-stack-server -I 7.2.0-v10
dokku redis:restart [name]
Actual Results
Error thrown claiming that
Missing image redis/redis-stack-server:7.2.0-v10 for [name]
.Expected Results
Startup should continue smoothly assuming the custom image is present in docker.
Environment Information
Note: This info was printed after having manually fixed the bug, before the status would not have been
running
.The text was updated successfully, but these errors were encountered: