You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2024-12-18 08:12:58,672 INFO [tc.tes.1.0] (build-17) Container testcontainers/sshd:1.1.0 started in PT2.291080682S
2024-12-18 08:13:00,835 ERROR [com.git.doc.api.asy.ResultCallbackTemplate] (docker-java-stream--288756554) Error during callback: com.github.dockerjava.api.exception.NotFoundException: Status 404: {"message":"manifest for apache/incubator-kie-kogito-data-index-ephemeral:10.0 not found: manifest unknown: manifest unknown"}
Temporary Fix (for developers)
We can manually define inside the application.properties which tag should be used for the devservice.
Now starting the application should spin up testcontainers for inifinispan and dataindex.
mvn quarkus:dev
Also to consider
This problem occurs for the template with infinispan (eg. ephemeral storage for dataindex).
Maybe it also occurs when using postgres as persistence, but to test this we need to adjust the dependencies in the pom.xml (for now i don't know how the correct setup would look like).
The text was updated successfully, but these errors were encountered:
Setup
Windows 23H2 but executed inside WSL 2 Distro Ubuntu 22.04.3 LTS.
Used branch 10.0.x
Problem
When using the project setup of the KIE Sandbox Quarkus Accelerator (eg. https://github.com/apache/incubator-kie-sandbox-quarkus-accelerator/tree/10.0.0) it wont startup correctly, because the TestContainer for data-index cannot be pulled => it does not exist on docker-hub.
The problem is, that it should use the tag
10.0.0
and not10.0
How to reproduce:
Clone Accelerator Repository:
Checkout branch 10.0.x
Do a maven build
Startup in dev mode
Output:
Temporary Fix (for developers)
We can manually define inside the
application.properties
which tag should be used for the devservice.# src/main/resources/application.properties quarkus.kogito.devservices.image-name=apache/incubator-kie-kogito-data-index-ephemeral:10.0.0
Now starting the application should spin up testcontainers for inifinispan and dataindex.
Also to consider
This problem occurs for the template with infinispan (eg. ephemeral storage for dataindex).
Maybe it also occurs when using postgres as persistence, but to test this we need to adjust the dependencies in the pom.xml (for now i don't know how the correct setup would look like).
The text was updated successfully, but these errors were encountered: