schon/scripts/Unix/run.sh
Egor fureunoir Gorbunov e7ba7dde0f Features: 1) Update reboot script to improve readability in service status messages; 2) Specify application name as "eVibes" in final confirmation message;
Fixes: 1) Standardize spacing in spinner commands for consistency; 2) Correct alignment of service lifecycle commands;

Extra: Adjust wording for better clarity and uniformity in reboot.sh script.
2025-06-16 14:09:37 +03:00

11 lines
279 B
Bash
Executable file

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