added docker-compose-24.yml for a quick start with Java 24

This commit is contained in:
Axel Uhl
2025-07-10 15:56:43 +02:00
parent 6bbda8c8a6
commit 759bb19d41
3 changed files with 21 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
FROM buildpack-deps:bullseye
ARG SAPJVM_VERSION=8.1.103
ARG SAPJVM_VERSION=8.1.105
LABEL maintainer=axel.uhl@sap.com
# Download and extract the SAP JVM 8
ENV PATH=${PATH}:/opt/sapjvm_8/bin
+19
View File
@@ -0,0 +1,19 @@
version: "3.10"
services:
sailing-analytics:
image: "ghcr.io/sap/sailing-analytics:latest-24"
ports:
- "8888:8888"
- "6666:6666"
- "14888:14888"
environment:
MONGODB_URI: mongodb://mongo/test
SERVER_NAME: test
REPLICATION_HOST: rabbitmq
REPLICATION_CHANNEL: test
REPLICATION_PORT: 5672
mongo:
image: "mongo:7"
rabbitmq:
image: "rabbitmq:3.13"
@@ -73,7 +73,7 @@ public class PageObject {
".//div[contains(@class, \"gwt-VerticalTabLayoutPanelTabInner\")]/div[text()=\"{0}\"]/../..");
/**
* </p>The default timeout of 15 seconds for the lookup of other elements.</p>
* </p>The default timeout of 60 seconds for the lookup of other elements.</p>
*/
protected static final int DEFAULT_LOOKUP_TIMEOUT = 60;