mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-17 14:01:21 +00:00
9 lines
208 B
Bash
Executable file
9 lines
208 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
compose_file="$repo_root/docker/compose.dev.yml"
|
|
|
|
docker compose -f "$compose_file" down --remove-orphans
|
|
|