Skip to content

Commit

Permalink
Merge branch 'flowable:main' into feature/memory-data-managers
Browse files Browse the repository at this point in the history
  • Loading branch information
ikaakkola authored Jan 19, 2024
2 parents f71653a + a90b378 commit 8803848
Show file tree
Hide file tree
Showing 72 changed files with 2,573 additions and 1,225 deletions.
3 changes: 1 addition & 2 deletions docker/base-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
FROM eclipse-temurin:11.0.15_10-jre-alpine@sha256:d401c4025eb1ead95cf2ca83cd5155bff8756527a4f4e9820570900e835f5ba4

FROM azul/zulu-openjdk-alpine:17.0.9-jre
LABEL maintainer="Flowable <[email protected]>"
RUN apk add --no-cache ttf-dejavu && rm -rf /var/cache/apk/*

Expand Down
2 changes: 1 addition & 1 deletion docker/base-image/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Flowable Docker base image

Extends from eclipse-temurin:11.0.15_10-jdk-alpine
Extends from azul/zulu-openjdk-alpine:17.0.9-jre

Adds `flowable:flowable` user which can be used to 'step down' from root when executing Flowable applications.

Expand Down
5 changes: 3 additions & 2 deletions docker/base-image/build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/bin/bash
set -eou pipefail

readonly IMAGE=${1:-"flowable/flowable-jre:11.0.15"}
readonly IMAGE=${1:-"flowable/flowable-jre:17.0.9"}
echo "Image name: ${IMAGE}"

echo "Building image..."
docker build -t ${IMAGE} -f Dockerfile .
docker buildx create --name container --driver=docker-container
docker buildx build --tag ${IMAGE} --platform linux/amd64,linux/arm64 --builder container --push .
2 changes: 1 addition & 1 deletion docker/base-image/push.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -eou pipefail

readonly IMAGE=${1:-"flowable/flowable-jre:11.0.15"}
readonly IMAGE=${1:-"flowable/flowable-jre:17.0.9"}
echo "Image name: ${IMAGE}"

echo "Pushing image..."
Expand Down
39 changes: 15 additions & 24 deletions docs/docusaurus/docs/bpmn/ch14-REST.md
Original file line number Diff line number Diff line change
Expand Up @@ -7374,30 +7374,21 @@ The response body contains the binary content. By default, the content-type of t
**Success response body:**

{
"data": [
{
"id" : "5",
"businessKey" : "myKey",
"processDefinitionId" : "oneTaskProcess%3A1%3A4",
"processDefinitionUrl" : "http://localhost:8182/repository/process-definitions/oneTaskProcess%3A1%3A4",
"startTime" : "2013-04-17T10:17:43.902+0000",
"endTime" : "2013-04-18T14:06:32.715+0000",
"durationInMillis" : 86400056,
"startUserId" : "kermit",
"startActivityId" : "startEvent",
"endActivityId" : "endEvent",
"deleteReason" : null,
"superProcessInstanceId" : "3",
"url" : "http://localhost:8182/history/historic-process-instances/5",
"variables": null,
"tenantId":null
}
],
"total": 1,
"start": 0,
"sort": "name",
"order": "asc",
"size": 1
"id" : "5",
"businessKey" : "myKey",
"processDefinitionId" : "oneTaskProcess%3A1%3A4",
"processDefinitionUrl" : "http://localhost:8182/repository/process-definitions/oneTaskProcess%3A1%3A4",
"startTime" : "2013-04-17T10:17:43.902+0000",
"endTime" : "2013-04-18T14:06:32.715+0000",
"durationInMillis" : 86400056,
"startUserId" : "kermit",
"startActivityId" : "startEvent",
"endActivityId" : "endEvent",
"deleteReason" : null,
"superProcessInstanceId" : "3",
"url" : "http://localhost:8182/history/historic-process-instances/5",
"variables": null,
"tenantId":null
}

### List of historic process instances
Expand Down
22 changes: 0 additions & 22 deletions k8s/flowable/.helmignore

This file was deleted.

154 changes: 0 additions & 154 deletions k8s/flowable/AKS_README.md

This file was deleted.

16 changes: 0 additions & 16 deletions k8s/flowable/Chart.yaml

This file was deleted.

102 changes: 0 additions & 102 deletions k8s/flowable/GKE_README.md

This file was deleted.

Loading

0 comments on commit 8803848

Please sign in to comment.