Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MII
num-diz
DSF BPE Full Image
Commits
744cb370
Commit
744cb370
authored
3 years ago
by
Johannes Bauer
Browse files
Options
Download
Email Patches
Plain Diff
feat: bump BPE version to 0.5.1 and update deps
parent
d7e330e1
master
1.3.2
1.3.1
1.3.0
1.2.1-pre
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
0.7.0
0.6.0
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.1-1
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.dockerignore
+0
-2
.dockerignore
Dockerfile
+4
-6
Dockerfile
README.md
+11
-2
README.md
jetty.properties
+0
-6
jetty.properties
log4j2.xml
+0
-58
log4j2.xml
with
15 additions
and
74 deletions
+15
-74
.dockerignore
+
0
-
2
View file @
744cb370
**
!jetty.properties
!log4j2.xml
This diff is collapsed.
Click to expand it.
Dockerfile
+
4
-
6
View file @
744cb370
FROM
curlimages/curl:7.77.0 AS deps
ARG
BPE_VERSION=0.5.1
ARG
HAPI_FHIR_CLIENT_VERSION=5.1.0
ARG
HIGHMED_PROCESS_VERSION=0.
4.1
ARG
NUM_CODEX_PROCESS_VERSION=0.
3.4
ARG
HIGHMED_PROCESS_VERSION=0.
5.0
ARG
NUM_CODEX_PROCESS_VERSION=0.
4.1
USER
root
...
...
@@ -21,7 +22,7 @@ RUN mkdir -p /plugin && \
USER
1000
FROM
ghcr.io/highmed/bpe:
0.4.0
FROM
ghcr.io/highmed/bpe:
${BPE_VERSION}
USER
root
...
...
@@ -34,9 +35,6 @@ RUN apt-get update && apt-get upgrade -y --no-install-recommends libgnutls30 lib
mkdir
-p
/opt/bpe/log
&&
\
mkdir
-p
/opt/bpe/last_event
COPY
./jetty.properties /opt/bpe/conf/jetty.properties
COPY
./log4j2.xml /opt/bpe/conf/log4j2.xml
COPY
--from=deps /plugin/*.jar /opt/bpe/plugin/
COPY
--from=deps /process/*.jar /opt/bpe/process/
...
...
This diff is collapsed.
Click to expand it.
README.md
+
11
-
2
View file @
744cb370
...
...
@@ -2,5 +2,14 @@
Business process engine (BPE) for the GECCO Data Sharing Framework
This docker image builds on top of the
`ghcr.io/highmed/bpe`
image
and includes all the necessary plugins and BPE processes.
This docker image builds on top of the
[
`ghcr.io/highmed/bpe`
](
https://github.com/highmed/highmed-dsf
)
image
and includes all the necessary plugins and BPE processes as listed below.
The BPE source version is equal to this image's version
## Included dependencies
-
[
HiGHmed processes
](
https://github.com/highmed/highmed-processes/releases/
)
v0.5.0
-
[
NUM-CODEX processes
](
https://github.com/num-codex/codex-processes-ap1/releases
)
v0.4.1
-
[
HAPI FHIR client plugin
](
https://repo1.maven.org/maven2/ca/uhn/hapi/fhir/hapi-fhir-client/5.1.0/hapi-fhir-client-5.1.0.jar
)
v5.1.0
This diff is collapsed.
Click to expand it.
jetty.properties
deleted
100644 → 0
+
0
-
6
View file @
d7e330e1
jetty.host
=
0.0.0.0
jetty.port
=
8080
jetty.cors.enable
=
false
jetty.log4j.config
=
conf/log4j2.xml
This diff is collapsed.
Click to expand it.
log4j2.xml
deleted
100644 → 0
+
0
-
58
View file @
d7e330e1
<?xml version="1.0" encoding="UTF-8"?>
<Configuration
status=
"INFO"
monitorInterval=
"30"
verbose=
"false"
>
<Appenders>
<Console
name=
"CONSOLE"
target=
"SYSTEM_OUT"
>
<PatternLayout
pattern=
"%highlight{%p %t - %C{1}.%M(%L) | %m%n}{FATAL=red, ERROR=red, WARN=yellow, INFO=white, DEBUG=white, TRACE=white}"
/>
</Console>
<RollingFile
name=
"FILE"
fileName=
"log/bpe.log"
filePattern=
"log/bpe_%d{MM-dd-yyyy}_%i.log.gz"
ignoreExceptions=
"false"
>
<PatternLayout>
<Pattern>
%d [%t] %-5p %c - %m%n
</Pattern>
</PatternLayout>
<Policies>
<OnStartupTriggeringPolicy/>
<TimeBasedTriggeringPolicy/>
</Policies>
</RollingFile>
<!-- <SMTP name="MAIL" subject="BPE Error"
to="foo@bar.de, baz@bar.de"
from="fhir@bar.de"
replyTo="foo@bar.de" smtpHost="smtp.bar.de"
smtpPort="25" bufferSize="50">
</SMTP>
<SMTP name="MAIL_CERTIFICATE" subject="BPE Certificate Warning"
to="foo@bar.de, baz@bar.de"
from="fhir@bar.de"
replyTo="foo@bar.de" smtpHost="smtp.bar.de"
smtpPort="25" bufferSize="1">
<ThresholdFilter level="WARN" onMatch="ACCEPT" onMismatch="DENY"/>
</SMTP> -->
</Appenders>
<Loggers>
<Logger
name=
"org.highmed"
level=
"TRACE"
/>
<logger
name=
"de.rwh"
level=
"DEBUG"
/>
<Logger
name=
"org.apache"
level=
"WARN"
/>
<Logger
name=
"org.springframework"
level=
"WARN"
/>
<Logger
name=
"jndi"
level=
"WARN"
/>
<Logger
name=
"org.eclipse.jetty"
level=
"INFO"
/>
<Logger
name=
"com.sun.jersey"
level=
"WARN"
/>
<Logger
name=
"liquibase"
level=
"WARN"
/>
<Logger
name=
"ca.uhn.hl7v2"
level=
"WARN"
/>
<Logger
name=
"de.netzwerk_universitaetsmedizin"
level=
"DEBUG"
/>
<!-- <Logger name="certificate-warning-logger" level="INFO">
<AppenderRef ref="MAIL_CERTIFICATE" />
</Logger> -->
<Root
level=
"WARN"
>
<AppenderRef
ref=
"CONSOLE"
level=
"DEBUG"
/>
<AppenderRef
ref=
"FILE"
level=
"TRACE"
/>
<!-- <AppenderRef ref="MAIL" /> -->
</Root>
</Loggers>
</Configuration>
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help