8ab537797a
next will be to add CI on it
8 lines
181 B
Bash
Executable File
8 lines
181 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
COMPOSE_FILE="$(dirname "$0")/docker-compose.test.yml"
|
|
|
|
echo "[teardown] Stopping test postgres..."
|
|
docker compose -f "$COMPOSE_FILE" down -v
|