2) Healthcheck improvements. Fixes: merge_recently_viewed for UserViewSet
11 lines
279 B
Bash
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."
|