Hi everyone!
I'm currently running a self-hosted instance of Appwrite. For my current use case, I don't need the AI/embedding features, and I noticed the appwrite/embedding container/service running.
Is there a recommended way to safely disable or turn off this specific service in the .env or docker-compose.yml file to save some resources?
Thanks in advance for the help!
embedding features are not fully released (VectorDB) so you can disable the postgres as well
if you want you can add profile (profiles: [disabled]) to the services
or remove the service completly
then compose down and up your instance and it shouldn't be there anymore
(iirc to start everything, with the disabled profiles services run docker compose --profiles disabled up if you don't provide the profile, it won't start)
Thank you 🙂
Recommended threads
- Cannot migrate from Supabase
Hi, I was trying to migrate from Supabase to the Appwrite database. My database had around 190K columns. I tried it twice. Both times, after 2 days, the proce...
- [SOLVED] CreateRow is doing ListRows on ...
### setup ``` appwrite 1.9.5 self-hosted bun 1.3 node-appwrite 27.1.0 ``` ### issue Im running a function on a self hosted 1.9.5 with "node-appwrite": "^27.1.0...
- Local function execution results in HTTP...
Hi all, I'm trying to develop a new function on my Ubuntu 24.04 machine running the latest version of docker. I've read through the documentation to install and...