Reputation: 1296
I faced with issue of using testcontainer:
com.github.dockerjava.api.exception.NotFoundException: {"message":"No such image: testcontainersofficial/ryuk:0.3.0"}
I tried the following recommended steps:
But without result
Upvotes: 2
Views: 3833
Reputation: 1572
Please make sure you are using the latest Testcontainers version (1.17.3
at the time of writing). There were some issues with changes in Docker Desktop's authentication mechanism, that could lead to issues when being authenticated and pulling public images. However, these are solved with 1.17.3
.
Since it seems you are using Testcontainers Scale I can't comment on particular issues with the Scala wrapper, but 0.40.9
should bring in the latest Testcontainers version as well.
Upvotes: 2