4 lines
182 B
Bash
Executable File
4 lines
182 B
Bash
Executable File
#!/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} |