nextcloud-swarm-plugin/cli/dev/linux/clean.sh
Mahyar Iranibazaz 135d0ccea3 fix(docker):
- fix: enable log mode
- update: cli dev tools
2024-10-16 17:56:00 +08:00

10 lines
248 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
# stop and remove the containers and volumes
echo "stopping and removing the containers and volumes";
docker compose --profile dev down --volumes --remove-orphans
# done
echo "cleaned up the dev environment"