Skip to content

Commit

Permalink
chore(deps): bump Spring Zeebe to 8.1.5 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
berndruecker authored Nov 18, 2022
1 parent a8fbc65 commit 5b69890
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion runtime/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM eclipse-temurin:17.0.5_8-jre

# Configure the connector runtime version
ARG SPRING_ZEEBE_VERSION=8.1.4
ARG SPRING_ZEEBE_VERSION=8.1.5

RUN mkdir /opt/app
# Download connectors from maven central
Expand Down
4 changes: 2 additions & 2 deletions runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ To use the image at least one Connector has to be added to the classpath. We rec
Example adding a Connector JAR by extending the image

```dockerfile
FROM camunda/connectors:0.3.0
FROM camunda/connectors:0.3.1

ADD https://repo1.maven.org/maven2/io/camunda/connector/connector-http-json/0.11.0/connector-http-json-0.11.0-with-dependencies.jar /opt/app/
```

Example adding a Connector JAR by using volumes

```bash
docker run --rm --name=connectors -d -v $PWD/connector.jar:/opt/app/ camunda/connectors:0.3.0
docker run --rm --name=connectors -d -v $PWD/connector.jar:/opt/app/ camunda/connectors:0.3.1
```

0 comments on commit 5b69890

Please sign in to comment.