Make Ryuk image version public #1500
-
Hi, is there any chance this image name could be made public?
I need to point to my mirror registry, by replacing the default image in Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
You can configure this by setting custom configurations either through an environment variable ( There's also the Setting I'll update the docs regarding this too. |
Beta Was this translation helpful? Give feedback.
You can configure this by setting custom configurations either through an environment variable (
TESTCONTAINERS_RYUK_CONTAINER_IMAGE
) or the~/.testcontainers.properties
file (ryuk.container.image
).There's also the
TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX
configuration, which lets you substitute the Docker Hub registry. Setting this will automatically prepend the value to all image names (as registry/host).Setting
TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX
tomyregistry.azurecr.io
automatically changesWithImage("alpine:3")
tomyregistry.azurecr.io/alpine:3
internally.I'll update the docs regarding this too.