Skip to content

Commit

Permalink
chore: rename docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
marstamm committed Oct 21, 2024
1 parent 832d97e commit be93bfc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
uses: docker/build-push-action@v5
with:
push: ${{ !github.event.pull_request.head.repo.fork }}
tags: ghcr.io/${{ github.repository_owner }}/prototype-rpa-worker:main
tags: ghcr.io/${{ github.repository_owner }}/rpa-runtime:main
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,16 @@ 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 -p 36227:36227 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/rpa-runtime:main
```

If you prefer to use Docker Compose, you can create a `docker-compose.yml` file with the following content:

```yaml
version: '3'
services:
rpa-worker:
image: ghcr.io/camunda/prototype-rpa-worker:main
rpa-runtime:
image: ghcr.io/camunda/rpa-runtime:main
environment:
- ZEEBE_CLIENT_ID=<your-client-id>
- ZEEBE_CLIENT_SECRET=<your-client-secret>
Expand Down

0 comments on commit be93bfc

Please sign in to comment.