Skip to content

Commit

Permalink
Make container name in CI logs generic. (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Capuccini authored Jun 10, 2022
1 parent 2ef78a6 commit 3031f06
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .ci/tests/examples/print_logs.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
#!/bin/bash
echo "Minio logs"
docker logs fedn_minio_1
docker logs "$(basename $PWD)_minio_1"

echo "Mongo logs"
docker logs fedn_mongo_1
docker logs "$(basename $PWD)_mongo_1"

echo "Reducer logs"
docker logs fedn_reducer_1
docker logs "$(basename $PWD)_reducer_1"

echo "Combiner logs"
docker logs fedn_combiner_1
docker logs "$(basename $PWD)_combiner_1"

echo "Client 1 logs"
docker logs fedn_client_1
docker logs "$(basename $PWD)_client_1"

echo "Client 2 logs"
docker logs fedn_client_2
docker logs "$(basename $PWD)_client_2"

0 comments on commit 3031f06

Please sign in to comment.