update versions
This commit is contained in:
parent
cd1955d626
commit
5673d823e8
3 changed files with 84 additions and 8 deletions
|
|
@ -21,6 +21,21 @@ services:
|
|||
TZ: "CET"
|
||||
LANG: "en_US.UTF-8"
|
||||
MAILGATEWAY: "mailgateway"
|
||||
|
||||
ASYNCEVENT_PROCESSOR_ENABLED: "true"
|
||||
ASYNCEVENT_PROCESSOR_INITIALDELAY: "10000"
|
||||
OCR_SERVICE_ENDPOINT: "http://tika:9998/tika"
|
||||
OCR_SERVICE_MODE: "MODEL"
|
||||
#OCR_PDF_MODE: "OCR_ONLY | TEXT_ONLY | TEXT_AND_OCR (default)"
|
||||
OCR_PDF_MODE: "TEXT_AND_OCR"
|
||||
ML_SERVICE_ENDPOINT: "http://imixs-ml-spacy:8000/"
|
||||
# Enable Training Scheduler
|
||||
ML_TRAINNG_SCHEDULER_ENABLED: "true"
|
||||
# TYPO Issue #28
|
||||
ML_TRAINING_SCHEDULER_ENABLED: "true"
|
||||
ML_TRAINING_SCHEDULER_INTERVAL: "10000"
|
||||
ML_TRAINING_SCHEDULER_INITIALDELAY: "60000"
|
||||
|
||||
ports:
|
||||
- "8080:8080"
|
||||
- "9990:9990"
|
||||
|
|
@ -28,6 +43,56 @@ services:
|
|||
volumes:
|
||||
- ./docker/deployments:/opt/jboss/wildfly/standalone/deployments/
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Tika OCR Service
|
||||
tika:
|
||||
#image: imixs/tika
|
||||
image: apache/tika:1.24.1-full
|
||||
environment:
|
||||
TZ: "Europe/Berlin"
|
||||
ports:
|
||||
- "9998:9998"
|
||||
|
||||
# Gotenberg Servcie (HTML2PDF converter)
|
||||
gotenberg:
|
||||
image: thecodingmachine/gotenberg:6
|
||||
ports:
|
||||
- "3000:3000"
|
||||
|
||||
|
||||
# Imixs-ML-spaCy Service
|
||||
imixs-ml-spacy:
|
||||
image: imixs/imixs-ml-spacy:1.0.1
|
||||
environment:
|
||||
PYTHONUNBUFFERED: 1
|
||||
TZ: "Europe/Berlin"
|
||||
MODEL_LANGUAGE: "de"
|
||||
MODEL_PATH: "models/invoice-de-0.0.3/"
|
||||
#MODEL_PATH: "models/invoice-de-0.0.3-FULL/"
|
||||
|
||||
ports:
|
||||
- "8000:8000"
|
||||
#volumes:
|
||||
# - ../src/models/:/usr/src/app/models/
|
||||
|
||||
|
||||
# Imixs-ML Training sevice
|
||||
# imixs-ml-training:
|
||||
# image: imixs/imixs-ml-training:latest
|
||||
# environment:
|
||||
# TZ: "Europe/Berlin"
|
||||
# TIKA_SERVICE_ENDPOINT: "http://tika:9998/tika"
|
||||
# #OCR_PDF_MODE: "OCR_ONLY | TEXT_ONLY | TEXT_AND_OCR (default)"
|
||||
# OCR_PDF_MODE: "TEXT_AND_OCR"
|
||||
# # Payara-Micor ENV
|
||||
# MP_OPENAPI_SERVERS: "http://localhost:8081"
|
||||
# ports:
|
||||
# - "8081:8080"
|
||||
# - "9009:9009"
|
||||
|
||||
imixsadmin:
|
||||
image: imixs/imixs-admin
|
||||
ports:
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@
|
|||
<!-- We exclude libs form the parent WAR artifact -->
|
||||
<overlays>
|
||||
<overlay>
|
||||
<groupId>com.imixs.workflow</groupId>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-app</artifactId>
|
||||
<excludes>
|
||||
<exclude>WEB-INF/lib/*.jar</exclude>
|
||||
|
|
@ -202,13 +202,13 @@
|
|||
|
||||
<!-- Imixs-Office-Workflow -->
|
||||
<dependency>
|
||||
<groupId>com.imixs.workflow</groupId>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-app</artifactId>
|
||||
<type>war</type>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.imixs.workflow</groupId>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-util</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
|
@ -220,12 +220,22 @@
|
|||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Imixs-Documents / Tika Service (optional)
|
||||
<!-- Imixs-Documents / OCR -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-archive-documents</artifactId>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
-->
|
||||
|
||||
|
||||
<!-- Imixs-ML -->
|
||||
<dependency>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-ml-workflow</artifactId>
|
||||
<version>${org.imixs.ml.version}</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
|
||||
</dependencies>
|
||||
</project>
|
||||
7
pom.xml
7
pom.xml
|
|
@ -27,10 +27,11 @@
|
|||
<!-- Versions -->
|
||||
<org.imixs.workflow.version>5.2.5</org.imixs.workflow.version>
|
||||
<org.imixs.marty.version>4.1.8</org.imixs.marty.version>
|
||||
<org.imixs.office.version>4.3.2-SNAPSHOT</org.imixs.office.version>
|
||||
<org.imixs.office.version>4.4.0</org.imixs.office.version>
|
||||
<org.imixs.adapters.version>2.2.3</org.imixs.adapters.version>
|
||||
<org.imixs.archive.version>2.2.4</org.imixs.archive.version>
|
||||
<org.imixs.melman.version>1.0.19</org.imixs.melman.version>
|
||||
<org.imixs.ml.version>1.0.1</org.imixs.ml.version>
|
||||
<microprofile.version>2.2</microprofile.version>
|
||||
|
||||
<custom.webResources>src/main/webapp</custom.webResources>
|
||||
|
|
@ -160,7 +161,7 @@
|
|||
|
||||
<!-- Office Workflow -->
|
||||
<dependency>
|
||||
<groupId>com.imixs.workflow</groupId>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-app</artifactId>
|
||||
<version>${org.imixs.office.version}</version>
|
||||
<type>war</type>
|
||||
|
|
@ -168,7 +169,7 @@
|
|||
|
||||
|
||||
<dependency>
|
||||
<groupId>com.imixs.workflow</groupId>
|
||||
<groupId>org.imixs.workflow</groupId>
|
||||
<artifactId>imixs-office-workflow-util</artifactId>
|
||||
<version>${org.imixs.office.version}</version>
|
||||
<scope>provided</scope>
|
||||
|
|
|
|||
Loading…
Reference in a new issue