-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make container name in CI logs generic. (#399)
- Loading branch information
Marco Capuccini
authored
Jun 10, 2022
1 parent
2ef78a6
commit 3031f06
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |