11 lines
219 B
Bash
Executable File
11 lines
219 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
cd "$SCRIPT_DIR"
|
|
|
|
# Stop and remove containers + volumes to reset DB state.
|
|
docker compose down -v
|
|
docker compose up -d
|