additional logging to figure out why enterprise rest api tests don't run with success

This commit is contained in:
rodicasutu
2020-12-07 11:55:57 +00:00
parent 443ebfe699
commit 8342d70a84
2 changed files with 11 additions and 1 deletions

View File

@@ -4,8 +4,10 @@ set -x
alfrescoContainerId=$(docker ps -a | grep '_alfresco_' | awk '{print $1}')
shareContainerId=$(docker ps -a | grep '_share_' | awk '{print $1}')
solrContainerId=$(docker ps -a | grep '_search_' | awk '{print $1}')
activeMQContainerId=$(docker ps -a | grep '_activemq_' | awk '{print $1}')
docker logs $alfrescoContainerId > alfresco.log
docker logs $activeMQContainerId > activemq.log
if [ -n "$shareContainerId" ]; then
docker logs $shareContainerId > share.log
fi