-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Add Docker Compose server examples #939
Conversation
services: | ||
kafka: | ||
container_name: lh-kafka | ||
image: bitnami/kafka:3.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's just use the apache/kafka:3.8.0
one since it's now an official image, and it also means you don't need to configure any environment variables.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Until now I didn't realize the full extent of what an Apache Kafka image release meant. Cool that they are releasing their own images now with built in env configurations!
- Remove CFG from env var names, was supported by Bitnami image but not Apache - Remove ENABLE_KRAFT env var, KRaft is default and ZooKeeper deprecated after 3.5.0
We will want to put this in the This can be the
Each file should also have tutorials for connecting with Another interesting example we can add (in addition to the four listed above) is one that has a worker running inside the docker compose on the same network. We'll then have to configure two listeners on the LH Server: 1) inside the docker compose network, 2) outside the docker compose network. I think that would be helpful for people to understand how everything works. |
Adds Docker Compose examples for the following LittleHorse Orchestrator use cases:
And more.