#!/bin/sh

# exit on error
set -e

DIR="$(cd "$(dirname "$0")" && pwd)"

cd "$DIR"

# stop and remove containers
docker compose down
