Skip to content

Commit

Permalink
update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Feb 15, 2024
1 parent 0515bd7 commit 2be4e98
Show file tree
Hide file tree
Showing 4 changed files with 4,041 additions and 5 deletions.
95 changes: 95 additions & 0 deletions docker/docker-compose-logistic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
version: "3.6"
services:

#######################
# PostgreSQL
#######################
db:
image: postgres:9.6.1
environment:
POSTGRES_PASSWORD: adminadmin
POSTGRES_DB: office-logistic
volumes:
- dbdata-logistic:/var/lib/postgresql/data

#######################
# Imixs-Documents
#######################
imixs-documents:
image: imixs/imixs-documents:latest
depends_on:
- db
environment:
JAVA_OPTS: "-Dnashorn.args=--no-deprecation-warning"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "adminadmin"
POSTGRES_CONNECTION: "jdbc:postgresql://db/office-logistic"
TZ: "Europe/Berlin"
LANG: "en_US.UTF-8"
MAILGATEWAY: "localhost"
ASYNCEVENT_PROCESSOR_ENABLED: "true"
ASYNCEVENT_PROCESSOR_INITIALDELAY: "10000"
OCR_SERVICE_ENDPOINT: "http://tika:9998/tika"
OCR_SERVICE_MODE: "MODEL"
#OCR_STRATEGY: "NO_OCR, OCR_ONLY, OCR_AND_TEXT_EXTRACTION, AUTO (default)"
OCR_STRATEGY: "AUTO"
ML_SERVICE_ENDPOINT: "http://imixs-ml-spacy:8000/"
#ML_MODEL: "invoice-de-0.1.0"
ML_MODEL: "logistics-de-0.1.0"
# Enable Training Scheduler
ML_TRAINING_SCHEDULER_ENABLED: "true"
ML_TRAINING_SCHEDULER_INTERVAL: "10000"
ML_TRAINING_SCHEDULER_INITIALDELAY: "60000"


ports:
- "8080:8080"
- "9990:9990"
- "8787:8787"
volumes:
# openliberty
# - ./deployments:/config/dropins/
- ./deployments:/opt/jboss/wildfly/standalone/deployments/
#- ./deployments/office-templates/:/wopi/templates/


#######################
# Tika OCR Service
#######################
tika:
#image: imixs/tika
image: apache/tika:1.24.1-full
environment:
TZ: "Europe/Berlin"
ports:
- "9998:9998"


#######################
# Imixs-ML-spaCy Service
#######################
imixs-ml-spacy:
image: imixs/imixs-ml-spacy:latest
environment:
PYTHONUNBUFFERED: 1
TZ: "Europe/Berlin"
MODEL_LANGUAGE: "de"
MODEL_PATH: "models/"
ports:
- "8000:8000"
volumes:
- ../src/models/:/usr/src/app/models/




#######################
# Imixs Admin Client
#######################
imixsadmin:
image: imixs/imixs-admin
ports:
- "8888:8080"

volumes:
dbdata-logistic:
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@
<maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>

<!-- Dependency Versions -->
<org.imixs.workflow.version>6.0.4-SNAPSHOT</org.imixs.workflow.version>
<org.imixs.marty.version>5.0.0-SNAPSHOT</org.imixs.marty.version>
<org.imixs.office.version>5.0.0-SNAPSHOT</org.imixs.office.version>
<org.imixs.archive.version>3.0.1-SNAPSHOT</org.imixs.archive.version>
<org.imixs.adapter.version>3.0.0-SNAPSHOT</org.imixs.adapter.version>
<org.imixs.workflow.version>6.0.4</org.imixs.workflow.version>
<org.imixs.marty.version>5.0.0</org.imixs.marty.version>
<org.imixs.office.version>5.0.1</org.imixs.office.version>
<org.imixs.archive.version>3.0.1</org.imixs.archive.version>
<org.imixs.adapter.version>3.0.0</org.imixs.adapter.version>
<org.imixs.melman.version>1.0.18</org.imixs.melman.version>
<org.imixs.ml.version>2.0.0-SNAPSHOT</org.imixs.ml.version>
<org.imixs.signature.version>1.0.0</org.imixs.signature.version>
Expand Down
Loading

0 comments on commit 2be4e98

Please sign in to comment.