From 1fa9fa1791f90b6fe03ee56b389d4284c2c97a44 Mon Sep 17 00:00:00 2001 From: Martin Stamm Date: Thu, 5 Sep 2024 12:55:13 +0200 Subject: [PATCH] chore(CHANGELOG): add prot mapping --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b586c0f..2515cd9 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ If you prefer to run the Camunda RPA Runtime using Docker, you can pull the Dock To run the RPA Runtime from Docker, execute the following command: ```sh -docker run -e ZEEBE_CLIENT_ID= -e ZEEBE_CLIENT_SECRET= -e CAMUNDA_CLUSTER_ID= -v /path/to/your/scripts:/usr/src/app/rpaScripts ghcr.io/camunda/prototype-rpa-worker:main +docker run -e ZEEBE_CLIENT_ID= -e ZEEBE_CLIENT_SECRET= -e CAMUNDA_CLUSTER_ID= -v /path/to/your/scripts:/usr/src/app/rpaScripts -p 36227:36227 ghcr.io/camunda/prototype-rpa-worker:main ``` If you prefer to use Docker Compose, you can create a `docker-compose.yml` file with the following content: @@ -46,6 +46,8 @@ services: - CAMUNDA_CLUSTER_ID= volumes: - /path/to/your/scripts:/usr/src/app/rpaScripts + ports: + - 36227:36227 ``` To run the RPA Runtime using Docker Compose, execute the following command: