Skip to content

Commit

Permalink
Print docker image info (#15)
Browse files Browse the repository at this point in the history
* Print docker image info during testing

* Print some extra docker info
  • Loading branch information
jabrah authored Feb 1, 2024
1 parent f082bbf commit 0a1a4ec
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/actions/acceptance-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0a1a4ec

Please sign in to comment.