Rank 2: Process
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
Votes
0
Replies
9
Participants
Unknown
Messages
10
Rank 2: Process
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
Rank 2: Process
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 lsthen remove each of the unwanted ones
docker rmi appwrite/appwrite:1.4.2
And you can use the lazydocker for easy managing
Rank 2: Process
Okay perfect thanks !
Rank 2: Process
[SOLVED] How to clean previous Appwrite installations (updates)