mirror of
https://github.com/MetaProvide/nextcloud-swarm-plugin.git
synced 2024-11-22 08:03:29 +00:00
135d0ccea3
- fix: enable log mode - update: cli dev tools
10 lines
248 B
Bash
Executable File
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"
|