Different images being published to Docker Hub and ECR Public
CarlosDomingues opened this issue · 1 comments
CarlosDomingues commented
The image aws-xray-daemon:3.2.0
present in Docker Hub has a few pre-installed packages such as sh, curl, etc.... The following command works:
docker run -it --entrypoint /bin/sh amazon/aws-xray-daemon:3.2.0
The following does not work:
docker run -it --entrypoint /bin/sh public.ecr.aws/xray/aws-xray-daemon:3.2.0
I was hopping to switch to ECR public to avoid Docker Hub limits, but unfortunately the image published in ECR public is way too bare bones and needs to be modified for stuff like healthchecks. Also not having /bin/sh makes testing much harder.
Related to #119