#!/usr/bin/env bash set -euo pipefail echo "Starting Docker Compose services..." if ! docker compose up --no-build --detach --wait; then echo "Error: Images are not pulled/built. Please run the install.sh script first." >&2 exit 1 fi echo "Containers are up and healthy."