Created
February 12, 2016 15:59
-
-
Save fabiofumarola/858f7140c29b875b5864 to your computer and use it in GitHub Desktop.
confluent docker-compose startup
This file contains 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
zookeeper: | |
image: confluent/zookeeper | |
ports: | |
- "2181:2181" | |
kafka: | |
image: confluent/kafka | |
ports: | |
- "9092:9092" | |
links: | |
- zookeeper:zookeeper | |
registry: | |
image: confluent/schema-registry | |
ports: | |
- "8081:8081" | |
links: | |
- kafka:kafka | |
- zookeeper:zookeeper | |
proxy: | |
image: confluent/rest-proxy | |
ports: | |
- "8082:8082" | |
links: | |
- kafka:kafka | |
- zookeeper:zookeeper | |
trifecta: | |
image: chatu/trifecta | |
ports: | |
- "8888:8888" | |
links: | |
- zookeeper:zookeeper | |
environment: | |
- ZOOKEEPERS=zookeeper |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think the proxy also needs to link to schema registry