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
- Realtime with multiple connections
I need the Realtime on multiple Collections for diffrent applicational logic. So my question is: Is there a way to have only 1 Websocket connection or do I need...
- Can't login or deploy functions in Appwr...
Hello, since i updatet to the appwrite cli 6.1.0 i can't login or deploy functions with the cli. When i call the command: "appwrite get account --verbose" i ge...
- Create admin user?
I'm not really sure how this is supposed to work, I installed Appwrite through docker-compose and set it up. When I launched the app and went into it, I created...