From 0a1a4ec4702a779dce46da15fdd04fbbbd7f9d37 Mon Sep 17 00:00:00 2001 From: John Abrahams Date: Thu, 1 Feb 2024 12:52:52 -0500 Subject: [PATCH] Print docker image info (#15) * Print docker image info during testing * Print some extra docker info --- .github/actions/acceptance-test/action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/actions/acceptance-test/action.yml b/.github/actions/acceptance-test/action.yml index 87cbaba..03500ce 100644 --- a/.github/actions/acceptance-test/action.yml +++ b/.github/actions/acceptance-test/action.yml @@ -38,6 +38,16 @@ runs: working-directory: pass-docker run: docker compose -f docker-compose.yml -f eclipse-pass.local.yml up -d --no-build --quiet-pull --pull ${{ inputs.pullimages }} + # Show both views to see which images are in use by docker compose but with extra info like time created from docker + - name: Print Docker images + shell: bash + working-directory: pass-docker + run: | + echo "##############" + docker images + echo "##############" + docker compose images + - name: Run acceptance tests shell: bash working-directory: pass-acceptance-testing