i have got a docker container called worker-usage-dump, and I wanted to delete/prune unused images/container/networks etc... my ubuntu shows: ~# docker ps -a -f status=exited
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
7d6e73e348be appwrite/appwrite:1.5.10 "worker-usage-dump" 8 days ago Exited (137) 3 days ago appwrite-worker-usage-dump
Is it save to remove/delete using: docker rm 7d6e73e348be
docker container prune --force
docker system prune --all --volumes --force
...???
Side story - maybe it exists because I was upgrading form 1.5 to 1.5.10 a couple days before - but I am not sure if its 8 days ago, and therefore can not ensure its connected to that event
Recommended threads
- Ways to reduce the size that appwrite ta...
Hi, Forgive me for the strange question because I'm not an expert. I have an appwrite selfhosted instance with 200 milion+ docs, the disk usage is 120+ gb Is...
- Validate User Server Side
I want to check if the user has a valid session before fetching data ```import { NextResponse } from 'next/server'; import { Client, Users } from 'node-appwrit...
- How to protect file url
I generate the url to file in NextJS server action. In client component, i use that url as src image. It works fine when I give Any permission! I want to protec...