Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.67 KB

README.md

File metadata and controls

53 lines (31 loc) · 1.67 KB

Docker compose

This section shows different docker compose example. Feel free to copy and adapt them to your use case

H2 database

Start a complete cherry plus zeebe platform

docker-compose -f docker-compose-core.yaml -f docker-compose-cherry.yaml -p c8-5-cherry up -d 

To remove the different container created (use stop instead of down if you just want to stop and don't remove the container)

docker-compose -f docker-compose-core.yaml -f docker-compose-cherry.yaml down -v

Postgres

This example used a postgres database to store information (statistics, upload connectors)

docker-compose -f docker-compose-core.yaml -f docker-compose-cherry-postgres.yaml -p c8-5-cherry up -d 

To remove the different container created (use stop instead of down if you just want to stop and don't remove the container)

docker-compose -f docker-compose-core.yaml -f docker-compose-cherry-postgres.yaml down

Onboard Connector JAR file

To start Cherry runtime and onboard automatically

Check docker-compose-cherry-postgres-localjar.yaml

Place in the jarconnectors any connector, and start the docker compose

docker-compose -f docker-compose-core.yaml -f docker-compose-cherry-postgres-localjar.yaml up -d