feat: 빠져있던 close-all.sh 스크립트 추가

This commit is contained in:
이상진 2025-06-27 16:58:39 +09:00
parent 8a0face4cd
commit 7bd4d982e8

4
close-all.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
GRAFANA_VOLUME="grafana-storage"
find docker/ -name 'docker-compose*.yml' -exec docker compose -f {} down --remove-orphans --rmi all \;
docker volume rm ${GRAFANA_VOLUME}