#Compose stuff


#creates a container from docker-compose.yml

docker compose up -d


#update container(i think)

docker compose pull && docker compose up -d


#delete the container

docker compose down


#The "Nuclear" Option (from the correct docker-compose.yml folder)

docker compose down --rmi all -v

. The "Deep Clean" (Caution Advised)

If you want to free up maximum space and delete all images that aren't currently being used by a running container (not just the ones without names), add the -a flag:

Bash

docker system prune -a





Delete all Unused Images

This removes images that aren't being used by at least one running container. Since we had so many failed pulls and different versions, this will likely free up the most space.

Bash

docker image prune -a -f