Skip to content

Instantly share code, notes, and snippets.

View gurezo's full-sized avatar
🎯
Focusing

Akihiko.KIgure gurezo

🎯
Focusing
View GitHub Profile

docker イメージ全削除 shell

#!/bin/bash

docker compose stop
docker compose rm -f
docker volume rm $(docker volume ls  | grep イメージ名 | awk '{print $2}')
sudo rm -rf .data
docker rmi $(docker images -aq) -f