#!/usr/bin/env bash
. ./cmd/env

run_cleanup() {
    heading "Stopping containers and removing volumes"
    ob_compose down --volumes
    success "Finished cleanup."
    exit 0
}

run_cleanup
