Skip to content

Commit

Permalink
fix: [#34] added commands to show image contents
Browse files Browse the repository at this point in the history
  • Loading branch information
jherrerasbp committed Dec 31, 2024
1 parent d6ea2c4 commit 79ad273
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/mcvs-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,23 @@ jobs:
docker images
docker run -d \
-p 5005:5000 \
-p 5001:5000 \
--name mcvs-registry \
${{ env.IMAGE_REPO }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
docker ps
curl -vk http://localhost:5005/v2/_catalog
docker exec -it mcvs-registry \
ash -c 'cat /etc/docker/registry/config.yml'
docker exec -it mcvs-registry \
ash -c \
'cat /etc/distribution/config.yml'
docker exec -it mcvs-registry \
ash -c \
'ls -lah /var/lib/registry/docker/registry/v2/repositories'
curl http://localhost:5001/v2/_catalog
docker rm --force mcvs-registry

0 comments on commit 79ad273

Please sign in to comment.