Well, this is my time ! Ive upgraded my Apprite instance (self-hosted) in my Docker Desktop in Windows without upgrading one-by-one version. Of course this is my bad but now the question is how recover the old Appwrite instance. During the upgrading a message said that a backup was going to be made. So I guess a backup is somewhere in my disk
What version to what version, did you run the migration script?
What issues are you having with the new version you've upgraded to?
1.3.7 -> 1.4.3 Ivce run this command🫣 :
docker run -it --rm `
--volume /var/run/docker.sock:/var/run/docker.sock `
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
--entrypoint="upgrade" `
appwrite/appwrite:1.4.3
well i dont find any backup file
arhh Im done
as mentioned in general, only the docker-compose.yml and .env files are backed up, not your whole instance
if this is all you did...you might be able to:
- downgrade to 1.3.8
- run the migrate command
- upgrade to 1.4.3
- run the migrate command
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...