Skip to content

Commit

Permalink
Adding camunda 8 to install documentation (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
francav authored May 27, 2024
2 parents 181dfe5 + e98c377 commit 80214eb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,15 @@ jobs:
push: true
tags: "${{ env.REGISTRY }}/${{ env.REPOSITORY_OWNER }}/c7-external-tasks:${{ steps.extract_tag.outputs.tag }}"

- name: Build and push Docker image for c8-external-tasks
uses: docker/build-push-action@v2
with:
context: ./apps/java/services/c8-external-tasks
platforms: linux/amd64,linux/arm64
file: apps/java/services/c8-external-tasks/Dockerfile
push: true
tags: "${{ env.REGISTRY }}/${{ env.REPOSITORY_OWNER }}/c8-external-tasks:${{ steps.extract_tag.outputs.tag }}"

- name: Build and push Docker image for case-engine-rest-api
uses: docker/build-push-action@v2
with:
Expand Down Expand Up @@ -157,4 +166,4 @@ jobs:
platforms: linux/amd64,linux/arm64
file: apps/node/email-sender/Dockerfile
push: true
tags: "${{ env.REGISTRY }}/${{ env.REPOSITORY_OWNER }}/email-sender:${{ steps.extract_tag.outputs.tag }}"
tags: "${{ env.REGISTRY }}/${{ env.REPOSITORY_OWNER }}/email-sender:${{ steps.extract_tag.outputs.tag }}"
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,14 @@ To quickly set up and run the project in a development environment, you can use
```bash
git clone https://github.com/wkspower/wks-platform-docker.git
cd wks-platform-docker
docker-compose up -d

# Now choose one of two options below:

# For camunda 7
docker-compose -f docker-compose.yaml -f docker-compose.camunda7.yaml -f docker-compose.demo-data-loader.camunda7.yaml -f docker-compose.portal.yaml up -d --build "$@"

# For camunda 8
docker-compose -f docker-compose.yaml -f docker-compose.camunda8.yaml -f docker-compose.demo-data-loader.camunda8.yaml -f docker-compose.portal.yaml up -d --build "$@"
```

After successfully running `docker-compose up` to start the Docker Compose configuration, it may take a while for all the web applications to finish their startup process. Once the startup is complete, you can access the following web applications:
Expand Down

0 comments on commit 80214eb

Please sign in to comment.