#!/bin/bash

LOCATION="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

echo "stopping streamline emr"
pushd $LOCATION > /dev/null
  if [ -f autoheal.pid ];then
    kill $(cat autoheal.pid)
  fi
  docker compose down
popd > /dev/null
echo "done."
