#!/usr/bin/env bash set -euo pipefail # shellcheck disable=SC1091 source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/lib/runtime-env.sh" args=(down --remove-orphans) if [[ "${1:-}" == "--volumes" ]]; then args+=(--volumes) fi compose "${args[@]}"