-
-
Notifications
You must be signed in to change notification settings - Fork 40
Can't reach database server #135
Comments
additional data, running
|
Potential SolutionMy database was created in v15. Without specifying a version number in my compose, the db postgres image updated to the latest version (v16), which is incompatible, and broke Kaizoku's access to the db. Updating the database from v15 to v16 appears possible, but requires some kind of database converstion/update that is beyond me. My solution was to specify a fixed v15 of postgres in my compose file. Steps below. Steps to fixYou may first have to run Available v15 apline tags: Then, in compose, make the following change (if applicable). db:
image: postgres:alpine New db:
image: postgres:15-alpine The DB image must have updated with Watchtower before I added in the 'ignore' label. Or, it's possibly an actual issue, I'm not sure. Either way, this was my solution in case anyone else is impacted. |
I just double checked the default db:
image: postgres:alpine Which may cause issues for folks who update the db image and created their database on a previous version of postgres, e.g., by using watchtower or manually. Potential fix above. |
I also had this issue. By adding the 15-alpine it does appear to work again. Though Agreed with mgrimace, this could be an issue for others that dont know about this issue and try to use the default compose. |
Describe the bug
kaizoku-redis-1
was stopped for some reason. Restarted Redis.Reproduction steps
docker compose up -d
starts redis, and db, but doesn't start kaizoku (hangs atrecreated
, does not proceed tostarted
)Expected behavior
Access webUI as normal
Additional context
My compose:
The text was updated successfully, but these errors were encountered: