Skip to content

Commit

Permalink
update 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aabouzaid committed Jan 10, 2025
1 parent 32eef2b commit 2f091e6
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-compose-test-e2e-full-setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ jobs:
camunda-version: ${{ matrix.versions.camunda-version }}
deps-compose-args: ${{ matrix.versions.deps-compose-args }}
main-compose-args: ${{ matrix.versions.main-compose-args }}
e2e-test-enabled: ${{ matrix.versions.e2e-test-enabled }}
e2e-test-enabled: ${{ matrix.versions.e2e-test-enabled || true }}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ services:
POSTGRES_PASSWORD: modeler-db-password
networks:
- modeler
profiles:
- ''
- web-modeler-standalone

modeler-websockets:
container_name: modeler-websockets
Expand All @@ -40,6 +43,9 @@ services:
PUSHER_APP_SECRET: modeler-app-secret
networks:
- modeler
profiles:
- ''
- web-modeler-standalone

mailpit:
# If you want to use your own SMTP server, you can remove this container
Expand All @@ -55,6 +61,9 @@ services:
interval: 30s
networks:
- modeler
profiles:
- ''
- web-modeler-standalone

# Modeler containers
modeler-restapi:
Expand Down Expand Up @@ -92,8 +101,11 @@ services:
RESTAPI_MAIL_ENABLE_TLS: "false"
RESTAPI_MAIL_FROM_ADDRESS: "[email protected]"
networks:
- modeler
- camunda-platform
- modeler
- camunda-platform
profiles:
- ''
- web-modeler-standalone

modeler-webapp:
container_name: modeler-webapp
Expand Down Expand Up @@ -133,7 +145,10 @@ services:
networks:
- modeler
- camunda-platform
profiles:
- ''
- web-modeler-standalone

networks:
camunda-platform:
modeler:
modeler:
27 changes: 27 additions & 0 deletions docker-compose/versions/camunda-8.3/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ services:
depends_on:
- elasticsearch
- identity
profiles:
- ''
- orchestration

operate: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#operate
image: camunda/operate:${CAMUNDA_PLATFORM_VERSION}
Expand Down Expand Up @@ -83,6 +86,9 @@ services:
- zeebe
- identity
- elasticsearch
profiles:
- ''
- orchestration

tasklist: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#tasklist
image: camunda/tasklist:${CAMUNDA_PLATFORM_VERSION}
Expand Down Expand Up @@ -126,6 +132,9 @@ services:
condition: service_healthy
identity:
condition: service_healthy
profiles:
- ''
- orchestration

connectors: # https://docs.camunda.io/docs/components/integration-framework/connectors/out-of-the-box-connectors/available-connectors-overview/
image: camunda/connectors-bundle:${CAMUNDA_CONNECTORS_VERSION}
Expand Down Expand Up @@ -159,6 +168,9 @@ services:
- zeebe
- operate
- identity
profiles:
- ''
- orchestration

optimize: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#optimize
image: camunda/optimize:${CAMUNDA_OPTIMIZE_VERSION}
Expand Down Expand Up @@ -194,6 +206,9 @@ services:
depends_on:
- identity
- elasticsearch
profiles:
- ''
- orchestration

identity: # https://docs.camunda.io/docs/self-managed/platform-deployment/docker/#identity
container_name: identity
Expand Down Expand Up @@ -251,6 +266,9 @@ services:
depends_on:
keycloak:
condition: service_healthy
profiles:
- ''
- identity

postgres: # https://hub.docker.com/_/postgres
container_name: postgres
Expand All @@ -269,6 +287,9 @@ services:
- postgres:/var/lib/postgresql/data
networks:
- identity-network
profiles:
- ''
- identity

keycloak: # https://hub.docker.com/r/bitnami/keycloak
container_name: keycloak
Expand All @@ -295,6 +316,9 @@ services:
- identity-network
depends_on:
- postgres
profiles:
- ''
- identity

elasticsearch: # https://hub.docker.com/_/elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
Expand Down Expand Up @@ -323,6 +347,9 @@ services:
- elastic:/usr/share/elasticsearch/data
networks:
- camunda-platform
profiles:
- ''
- orchestration

kibana:
image: docker.elastic.co/kibana/kibana:${ELASTIC_VERSION}
Expand Down

0 comments on commit 2f091e6

Please sign in to comment.