blob: 76ce6ddc3d90a6add24c4d0e4e205550696ffe8f [file] [log] [blame] [view]
Darius Jokilehtoa95a8b82023-01-04 22:34:13 +00001# What is this for?
2
3This docker compose sets up primary and replica nodes using pull-replication to
4replicate with notifications over a broker. In this case our broker
5implementation is Kafka.
6
7Copy the pull-replication, events-kafka, and events-broker artefacts to test
8into this directory:
9
10```bash
11cp $GERRIT_HOME/bazel-bin/plugins/pull-replication/pull-replication.jar .
12cp $GERRIT_HOME/bazel-bin/plugins/events-kafka/events-kafka.jar .
Saša Živkovfe2e71c2023-05-08 10:43:19 +020013cp $GERRIT_HOME/bazel-bin/plugins/events-broker/events-broker.jar .
Darius Jokilehtoa95a8b82023-01-04 22:34:13 +000014```
15
16Start up the application using docker compose:
17
18```bash
19docker-compose up
20```