schon/scripts/Unix/run.sh
Egor fureunoir Gorbunov 1e8d053ab6 Features: 1) OS-specific scripts for deployments.
2) Healthcheck improvements.
Fixes: merge_recently_viewed for UserViewSet
2025-06-11 02:54:46 +03:00

11 lines
279 B
Bash

#!/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."