Skip to content

Commit

Permalink
docu
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Sep 14, 2023
1 parent 0ac686d commit 5f14582
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
25 changes: 25 additions & 0 deletions imixs-archive-exporter/Dockerfile-wildfly-debug
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
FROM quay.io/wildfly/wildfly:27.0.1.Final-jdk11

LABEL description="Imixs-Archive-Exporter"
LABEL maintainer="[email protected]"

# Setup configuration
COPY ./docker/configuration/wildfly/standalone.xml /opt/jboss/wildfly/standalone/configuration/

# Deploy artefact
ADD ./target/*.war /opt/jboss/wildfly/standalone/deployments/
WORKDIR /opt/jboss/wildfly

# Add the Wildfly start script
USER root
ADD ./docker/configuration/wildfly_start.sh $JBOSS_HOME/
RUN chmod +x $JBOSS_HOME/wildfly_start.sh
USER jboss

# Expose the ports we're interested in
EXPOSE 8080 8787 9990

#CMD ["/opt/jboss/wildfly/wildfly_start.sh"]
# Run in Debug Mode
CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0", "-bmanagement", "0.0.0.0", "--debug", "*:8787"]

6 changes: 6 additions & 0 deletions imixs-archive-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ The Imixs-Archive-Exporter is controlled by corresponding [EventLog Entries](htt

On each corresponding workflow event a new event log entry `file.export` will be created. The Imixs-Archive-Exporter periodically check this event log entries and exports the corresponding files into a configured data space.

**Note:** To process new eventLog entries you need to add the `EventLogPlugin` to your workflow model!

```
org.imixs.workflow.engine.plugins.EventLogPlugin
```

## Path

The optional event parameter `path` can be used to specify the target path for the file to be exported.
Expand Down

0 comments on commit 5f14582

Please sign in to comment.