mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-16 02:38:44 +00:00
added docker-compose-24.yml for a quick start with Java 24
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
+1
-1
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user