
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
- Table ID’s
Why are my table names showing without table ID’s??
- Relation with Auth User
WIll Appwrite ever add the ability to create a relation to an Auth user? It seems tedious that the solution for this is to create a separate User table and add...
- My Appwrite login is failing
Hello team, I’m facing a login issue with appwrite this morning. I started receiving customer support emails that they can’t login. I haven’t changed or pushed ...
