Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
niallthomson committed Feb 20, 2025
1 parent 5b426b6 commit b87d12f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
if [ $exit_code -ne 0 ]; then
echo "Compose up failed"
docker ps
docker inspect --format "{{json .State.Health }}" app-ui-1 || true
docker logs app-ui-1 || true
exit $exit_code
fi
sleep 60
Expand Down
5 changes: 4 additions & 1 deletion src/ui/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ services:
- ALL
healthcheck:
test:
["CMD-SHELL", "curl -f http://localhost:8080/actuator/health || exit 1"]
[
"CMD-SHELL",
"curl -s -f http://localhost:8080/actuator/health || exit 1",
]
interval: 10s
timeout: 10s
retries: 3
Expand Down

0 comments on commit b87d12f

Please sign in to comment.