Hello everyone I am looking for an overload of doc...
# help
d
Hello everyone I am looking for an overload of docker registry, we are using azure acr for storing and pulling docker images and would like wiremock to try pull from acr and not docker hub while executing test. Can you please help?
t
Are you looking to avoid docker hub due to the rate limit? If so we also publish to GitHub Packages.
If you really want to pull from Azure specifically you can set up your own script/CI job to copy WireMock over to your own repository
d
yeah looking to avoid docker hub due to the rate limit but i think the limit is coming when using wire mock to create container image and thats where it tries to pull from docker
we are using it to build our containers on integration tests
t
You should be fine with the GitHub Packages version in that case
d
Copy code
with DockerImage(
        path=".",
        dockerfile_path="Dockerfile",
        tag="ai_docker_tag",
        clean_up=False,
    ) as image:
we currently do something like this, not sure I follow how to transit to GitHub Packages
t
That’s not a DSL I recognise, sorry
🙏 1