
I want to upgrade to 1.3.1, how can I achieve this if I installed appwrite manually (I downloaded the docker-compose.yaml and the .env files manually and put them in a folder)?

I think I found the solution, which is also pretty manual. Make sure you have git installed:
First, get the newest docker-file:
wget -O new-docker-compose.yaml https://appwrite.io/install/compose
Now diff the files with git
git diff --no-index docker-compose.yaml new-docker-compose.yaml
Now check the output, everything green are the changes that are coming from the new version. Go though one by one and either put them into your current docker compose or discard the changes
Repeat for the .env file
wget -O .new-env https://appwrite.io/install/env
git diff --no-index .env .new-env
Run docker compose exec appwrite migrate
inside the folder and cross your fingers š¤
Start your containers
docker compose up -d --remove-orphans
And lastly, run docker ps | grep appwrite/appwrite
and check that the versions are all 1.3.1
Recommended threads
- CRUD Operations don't work
Hey all, Create, update, and delete is not working for the Appwrite database. The database seems down. When will it be solved? As I can see from the other suppo...
- Appwrite REST API Docs in LLM-Friendly F...
Is there a version of the Appwrite REST API documentation available in a format suitable for LLM vector embedding? Specifically, Iām referring to the following ...
- OpenAI Whisper on Appwrite Sites
Hey guys, just wondering if I can serve an OpenAI Whisper AI on appwrite / appwrite sites. tiny model is like ~40-50MB
