How can I access a local container from Appwrite functions? I have a container for FastAPI, and I want to access it without calling it as an external API. I tried adding it to the Appwrite compose YAML file with the same network and exposed port, but I still couldn’t access it.
#[SOLVED] Communicate Appwrite Function with another local Container
3 messages · Page 1 of 1 (latest)
Runtime containers are added into the runtimes network: https://github.com/appwrite/appwrite/blob/bd920ead40b50b8be1cec32fcc8299ec2e5454a3/app/views/install/compose.phtml#L780-L781. It might work if you added your FastAPI container to that network.
Ohh, It Works thanks.