docker compose on multiple environments
docker-compose is a pretty cool tool that allows you to bootstrap and run multiple docker containers with 1 configuration file Below is an example docker-compose file for staring a 3 node confluent kafka cluster —version: ‘2’services: zookeeper: image: confluentinc/cp-zookeeper:latest network_mode: host environment: ZOOKEEPER_CLIENT_PORT: 32181 ZOOKEEPER_TICK_TIME:…