apicurio-registry
apicurio-registry copied to clipboard
Docker image apicurio-registry-mem:2.4.1.Final is not working when using Colima as the docker engine
First of all latest is not the latest image:
docker pull apicurio/apicurio-registry-mem:latest
Last pushed 2 years ago
so using command line according to main page:
docker run -it -p 8080:8080 apicurio/apicurio-registry-mem
gives you version two years old
but at least this version works.
Booting the image with the following settings:
docker run -it -p 8080:8080 apicurio/apicurio-registry-mem:latest-release
gives the following result in the logs:
Starting the Java application using /opt/jboss/container/java/run/run-java.sh ...
ERROR Neither $JAVA_MAIN_CLASS nor $JAVA_APP_JAR is set and 0 JARs found in /deployments (1 expected)
INFO exec java -Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager -javaagent:/usr/share/java/jolokia-jvm-agent/jolokia-jvm.jar=config=/opt/jboss/container/jolokia/etc/jolokia.properties -XX:+UseParallelGC -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=20 -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -XX:+ExitOnOutOfMemoryError -cp "." -jar
Error: -jar requires jar file specification
Could you fix it?