fix(infra): add cd path to banner compose logs command

The banner showed bare COMPOSE_FILE filename without the directory,
making the command unusable via copy-paste. Now shows the cd first.
This commit is contained in:
saravanakumardb1 2026-03-24 13:48:05 -07:00
parent 01f2276aa8
commit d64ea4fba7

View File

@ -973,7 +973,8 @@ main() {
echo "║ Deployment complete in ${minutes}m ${seconds}s ║"
echo "║ ║"
echo "║ Health check: /opt/bytelyst/check-health.sh ║"
echo "║ Compose logs: docker compose -f ${COMPOSE_FILE} logs -f ║"
echo "║ Compose logs: cd ${INSTALL_DIR}/learning_ai_common_plat ║"
echo "║ docker compose -f ${COMPOSE_FILE} logs -f ║"
echo "║ Retry failed: sudo ./setup.sh --phase=7 ║"
echo "║ Resume: sudo ./setup.sh --resume ║"
echo "║ Gitea UI: http://localhost:3300 ║"