docker-compose up <service>
Forge uses config.json and ui-config.json to save settings (note they've been prone to become incompatible with newer forge/gradio versions).
docker cp <container_id>:/Forge/stable-diffusion-webui/config.json ./config.jsondocker exec -it rocm6.1 bash
docker ps -adocker imagesdocker logs -f rocm6.1docker inspect <container_id> | grep com.docker.composedu -hd1 /var/lib/docker/overlay2 | sort -h
Remove all unused data (warning: start up important containers to exclude them!).
docker system prune -af
Remove specific unused data:
docker container prune -adocker network prune -adocker image prune -adocker builder prune -a(always uses the most space)docker volume prune -a
Remove image
docker rm <container_id>docker rmi <image>
Images with <none>:<none> indicate orphans that can be safely removed with:
docker images -f "dangling=true"docker image prune
docker rm -vf $(docker ps -aq)docker rmi -f $(docker images -aq)docker volume rm $(docker volume ls -qf dangling=true)