skip to Main Content

Docker – Can't connect/write stream from spark container to table in cassandra container

I am composing these services in separate docker containers all on the same confluent network: broker: image: confluentinc/cp-server:7.4.0 hostname: broker container_name: broker depends_on: zookeeper: condition: service_healthy ports: - "9092:9092" - "9101:9101" environment: KAFKA_BROKER_ID: 1 KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181' KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://broker:29092,PLAINTEXT_HOST://localhost:9092…

VIEW QUESTION

Docker random volume creation

I have the following docker compose : services: db: container_name: Postgres_Server image: 'postgis/postgis:latest' restart: always volumes: - dbdata:/var/lib/postgresql/data environment: POSTGRES_USER: root POSTGRES_PASSWORD: root POSTGRES_DB: routingfinder ports: - "5432:5432" pgadmin: container_name: PgAadmin4 image: dpage/pgadmin4:8.13 restart: always volumes: - pgadmin:/var/lib/postgresql/data environment: PGADMIN_DEFAULT_EMAIL:…

VIEW QUESTION
Back To Top
Search