
I ran into an issue with the deployment container for a cloud function not being resolvable (error: Internal curl errors has occurred within the executor! Error Number: 6. Error Msg: Could not resolve host: 67c8f2a927952 Error Code: 500
). After further investigation, the docker DNS server in the runtimes network was appending .runtimes
to the end of the 67c8f2a927952 record so it was only discoverable by 67c8f2a927952.runtimes
. I found that I could work around this by adding dns_search: runtimes
to the docker-compose.yml for the executor service, however I haven't ran into this issue before. I'm running Docker version 28.0.1, build 068a01e
and my best guess is that Appwrite doesn't officially support that version. Am I right? If so, what is the supported version of docker?
Recommended threads
- WHITELIST IPS
_APP_CONSOLE_WHITELIST_IPS=my-ip but it's working from any ip.How can make console open just from my ip?
- Can multiple functions exist in one Appw...
Can I add more than one function in the `src/main.js` file of an Appwrite cloud function? What if the different functions depend on two separate events, speci...
- Postman function call
Hi I'm trying to call a locally running function, which requires auth, in headers I'm passing jwt token with key as 'x-appwrite-user-jwt", but upon logging req....
