Skip to content

Commit

Permalink
Print some extra docker info
Browse files Browse the repository at this point in the history
  • Loading branch information
jabrah committed Feb 1, 2024
1 parent 6e02d37 commit d461392
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/actions/acceptance-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,15 @@ 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: docker images
run: |
echo "##############"
docker images
echo "##############"
docker compose images
- name: Run acceptance tests
shell: bash
Expand Down

0 comments on commit d461392

Please sign in to comment.