Self-hosted Quirrel in Docker-Compose #853
-
Hi there! I am trying to set up a self-hosted Quirrel instance with docker-compose. I try to archive that Quirrel and my Next-app are able to communicate via docker's internal networks. But when I try to enqueue some jobs, I get an
This is my docker-compose.yml: (the relevant parts only)
It seems like my app is able to reach the Quirrel server, but the server seems not be able to call the queue api endpoint and refuses to enqueue the job. What am I missing here? (I am aware that when deployed I could point QUIRREL_BASE_URL to the public domain. This is what I am currently doing, using quirrel.dev hosted version. But due to increasing API calls I want to move to self-hosted.) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sorry, everyone! This was my own mistake. I was using an old version of the Quirrel docker-image. |
Beta Was this translation helpful? Give feedback.
Sorry, everyone! This was my own mistake. I was using an old version of the Quirrel docker-image.
Changing to
image: ghcr.io/quirrel-dev/quirrel:main
solved it!