skip to Main Content

Apple M1: can't start the confluent control center using docker

I would like to start the Confluent control center using docker as prescribed in the document: https://docs.confluent.io/platform/current/quickstart/ce-docker-quickstart.html This is the docker-compose.yaml file they provided; --- version: '2' services: zookeeper: image: confluentinc/cp-zookeeper:5.5.0 hostname: zookeeper container_name: zookeeper ports: - "2181:2181" environment: ZOOKEEPER_CLIENT_PORT:…

VIEW QUESTION

Redis – Kafka-connect docker image built as appuser – how to build it as root?

I am trying to build a Kafka-Connect image in Docker: FROM confluentinc/cp-kafka-connect RUN confluent-hub install --no-prompt wepay/kafka-connect-bigquery:1.6.1 RUN confluent-hub install --no-prompt confluentinc/connect-transforms:latest RUN mkdir -p /usr/share/landoop-plugins COPY kafka-connect-redis-1.2.2-2.1.0-all.jar /usr/share/landoop-plugins/ but it runs as appuser Step 4/4 : RUN id --->…

VIEW QUESTION
Back To Top
Search