Created
December 20, 2025 17:27
-
-
Save mqnoy/73b21b8c24686352e5cd2a68358b7f00 to your computer and use it in GitHub Desktop.
camunda 8 docker compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| elasticsearch: | |
| image: docker.elastic.co/elasticsearch/elasticsearch:7.17.19 | |
| container_name: elasticsearch | |
| environment: | |
| - discovery.type=single-node | |
| - xpack.security.enabled=false | |
| - ES_JAVA_OPTS=-Xms512m -Xmx512m | |
| volumes: | |
| - ./data/elasticsearch:/usr/share/elasticsearch/data | |
| ports: | |
| - "9200:9200" | |
| zeebe: | |
| image: camunda/zeebe:8.5.0 | |
| container_name: zeebe | |
| depends_on: | |
| - elasticsearch | |
| environment: | |
| - ZEEBE_BROKER_CLUSTER_NODEID=0 | |
| - ZEEBE_BROKER_CLUSTER_PARTITIONSCOUNT=1 | |
| - ZEEBE_BROKER_CLUSTER_REPLICATIONFACTOR=1 | |
| - ZEEBE_BROKER_GATEWAY_ENABLE=true | |
| - ZEEBE_BROKER_GATEWAY_NETWORK_HOST=0.0.0.0 | |
| - ZEEBE_BROKER_EXPORTERS_ELASTICSEARCH_CLASSNAME=io.camunda.zeebe.exporter.ElasticsearchExporter | |
| - ZEEBE_BROKER_EXPORTERS_ELASTICSEARCH_ARGS_URL=http://elasticsearch:9200 | |
| volumes: | |
| - ./data/zeebe:/usr/local/zeebe/data | |
| ports: | |
| - "26500:26500" | |
| operate: | |
| image: camunda/operate:8.5.0 | |
| depends_on: | |
| - zeebe | |
| - elasticsearch | |
| environment: | |
| - CAMUNDA_OPERATE_ZEEBE_GATEWAYADDRESS=zeebe:26500 | |
| - CAMUNDA_OPERATE_ELASTICSEARCH_URL=http://elasticsearch:9200 | |
| - CAMUNDA_OPERATE_ZEEBEELASTICSEARCH_URL=http://elasticsearch:9200 | |
| ports: | |
| - "8081:8080" | |
| tasklist: | |
| image: camunda/tasklist:8.5.0 | |
| depends_on: | |
| - zeebe | |
| - elasticsearch | |
| environment: | |
| - CAMUNDA_TASKLIST_ZEEBE_GATEWAYADDRESS=zeebe:26500 | |
| - CAMUNDA_TASKLIST_ELASTICSEARCH_URL=http://elasticsearch:9200 | |
| - CAMUNDA_TASKLIST_ZEEBEELASTICSEARCH_URL=http://elasticsearch:9200 | |
| ports: | |
| - "8082:8080" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment