Skip to content

Commit

Permalink
chore(CHANGELOG): add prot mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
marstamm committed Sep 5, 2024
1 parent 31500aa commit 1fa9fa1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<your-client-id> -e ZEEBE_CLIENT_SECRET=<your-client-secret> -e CAMUNDA_CLUSTER_ID=<your-cluster-id> -v /path/to/your/scripts:/usr/src/app/rpaScripts ghcr.io/camunda/prototype-rpa-worker:main
docker run -e ZEEBE_CLIENT_ID=<your-client-id> -e ZEEBE_CLIENT_SECRET=<your-client-secret> -e CAMUNDA_CLUSTER_ID=<your-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:
Expand All @@ -46,6 +46,8 @@ services:
- CAMUNDA_CLUSTER_ID=<your-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:
Expand Down

0 comments on commit 1fa9fa1

Please sign in to comment.