Skip to content

Commit

Permalink
Merge pull request #3 from georchestra/chore-print-logs-docker-compos…
Browse files Browse the repository at this point in the history
…e-up

chore: print logs on error docker compose up
  • Loading branch information
f-necas authored Feb 10, 2025
2 parents 78a4e96 + b876314 commit 80a170c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ jobs:
- name: Launch docker-compose
run: |
cd docker
docker compose up -d --wait --quiet-pull
if docker compose up -d --wait --quiet-pull ; then
echo "docker compose succeedeed"
else
docker compose logs
exit 1
fi
cd ..
echo "Trigger GN wro4j..."
curl -k https://georchestra-127-0-0-1.nip.io/geonetwork/srv/eng/catalog.search
Expand Down

0 comments on commit 80a170c

Please sign in to comment.