how could I know which domain are used for the download of my docker image ?
I need it cause the server I’m using only a allow a specific list of domain name for outside traffic.
how could I know which domain are used for the download of my docker image ?
I need it cause the server I’m using only a allow a specific list of domain name for outside traffic.
2
Answers
Ended up using wireshark to capture every dns package, and look up the domain name present.
If you pull an image by simply using its name (e.g.
docker pull postgres
), the image probably comes from Docker Hub. Otherwise the registry you’re pulling the image from will be listed (e.g.docker pull quay.io/keycloak/keycloak:20.0.1
)Docker Documentation