Hi, how I proper clean my server after each Appwrite updates ?
When I execute docker images I can see all minor appwrite versions which consume at least 1Gb each.
I'm worry about executing docker images prune, is it safe?
Thanks
If you don't have any active installation then it's complexly safe
Also check this
It could help you with fast docker cleaning
Exactly this is for a server with an active Appwrite instance running, I don't want to broke all the installation :/
Okay, Docker won't let you remove any image that is in use
So what I would do is to run
docker image ls
then remove each of the unwanted ones
docker rmi appwrite/appwrite:1.4.2
And you can use the lazydocker for easy managing
Okay perfect thanks !
[SOLVED] How to clean previous Appwrite installations (updates)
Recommended threads
- Self-host migration from 1.8.X
Is it safe to now migrate from 1.7.4 to 1.8.X on my selfhost?
- DeploymentStatus enum value `canceled` m...
Hey, Sorry if it has been reported already, I found an issue using the Dart SDK where the `canceled` enum value is missing from `DeploymentStatus`. This causes...
- Flutter OAuth2 webAuth Bug?
I created with flutter an app where I can login in with my Microsoft Account. When I compile it to Web (WASM) or Android (aab) then there is no problem what so ...