fix(scripts): correct Makefile target name in docker.sh restart message (#1161)

docker.sh restart() tells users to run `make docker-dev-logs`, but
this target does not exist. The correct target is `make docker-logs`.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Karesansui
2026-03-16 20:58:59 +09:00
committed by GitHub
parent 191b60a326
commit 3212c7c5a2

View File

@@ -234,7 +234,7 @@ restart() {
echo -e "${GREEN}✓ Docker services restarted${NC}" echo -e "${GREEN}✓ Docker services restarted${NC}"
echo "" echo ""
echo " 🌐 Application: http://localhost:2026" echo " 🌐 Application: http://localhost:2026"
echo " 📋 View logs: make docker-dev-logs" echo " 📋 View logs: make docker-logs"
echo "" echo ""
} }