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.
11 lines
279 B
Bash
Executable file
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."
|