From 7355d4a68b3edcc908d1164d4a2079428088a292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20B=C4=85czkowski?= Date: Mon, 23 May 2022 11:15:46 +0200 Subject: [PATCH] Skip unnecessary docker containers creation. --- docker-compose.yml | 55 +++++++++++++++++++++++----------------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 7fe73e8..2717bf2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,33 +1,34 @@ version: "2" services: - zookeeper: - image: confluentinc/cp-zookeeper:3.2.2 - environment: - ZOOKEEPER_CLIENT_PORT: "2181" - zk_id: "1" - ports: - - "2181:2181" - kafka: - hostname: kafka - image: confluentinc/cp-kafka:3.2.2 - links: - - zookeeper - ports: - - "9092:9092" - environment: - KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181" - KAFKA_ADVERTISED_LISTENERS: "PLAINTEXT://:9092" - schema-registry: - image: confluentinc/cp-schema-registry:3.2.2 - links: - - kafka - - zookeeper - ports: - - "8081:8081" - environment: - SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: "zookeeper:2181" - SCHEMA_REGISTRY_HOST_NAME: "schema-registry" + # for future e2e testing + # zookeeper: + # image: confluentinc/cp-zookeeper:3.2.2 + # environment: + # ZOOKEEPER_CLIENT_PORT: "2181" + # zk_id: "1" + # ports: + # - "2181:2181" + # kafka: + # hostname: kafka + # image: confluentinc/cp-kafka:3.2.2 + # links: + # - zookeeper + # ports: + # - "9092:9092" + # environment: + # KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181" + # KAFKA_ADVERTISED_LISTENERS: "PLAINTEXT://:9092" + # schema-registry: + # image: confluentinc/cp-schema-registry:3.2.2 + # links: + # - kafka + # - zookeeper + # ports: + # - "8081:8081" + # environment: + # SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: "zookeeper:2181" + # SCHEMA_REGISTRY_HOST_NAME: "schema-registry" scylladb: image: scylladb/scylla hostname: scylladb/scylla