Skip to content

Instantly share code, notes, and snippets.

@fabiofumarola
Created February 12, 2016 15:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiofumarola/858f7140c29b875b5864 to your computer and use it in GitHub Desktop.
Save fabiofumarola/858f7140c29b875b5864 to your computer and use it in GitHub Desktop.
confluent docker-compose startup
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
@hotienvu
Copy link

I think the proxy also needs to link to schema registry

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment