View kafka-connect-service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kafka-connect: | |
image: 'bitnami/kafka:2.5.0' | |
container_name: kafka_connect | |
ports: | |
- '8079:8083' | |
volumes: | |
- './kafka_connect_data:/bitnami' | |
- './kafka_connect_config/connect-distributed.properties:/opt/bitnami/kafka/config/connect-distributed.properties' | |
depends_on: | |
- zookeeper |
View kafka-service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kafka: | |
image: 'bitnami/kafka:2.5.0' | |
container_name: kafka | |
ports: | |
- '9092:9092' | |
volumes: | |
- './kafka_data:/bitnami' | |
- './kafka_log:/tmp/kafka_mounts/logs' |
View zookeeper-service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
zookeeper: | |
image: 'bitnami/zookeeper:3.5.7' | |
container_name: zookeeper | |
ports: | |
- '2181:2181' | |
volumes: | |
- './zookeeper_data:/bitnami' | |
environment: | |
- ALLOW_ANONYMOUS_LOGIN=yes |
View docker-compose for kafka-connect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
zookeeper: | |
image: 'bitnami/zookeeper:3.5.7' | |
ports: | |
- '2181:2181' | |
volumes: | |
- './zookeeper_data:/bitnami' | |
environment: |
View .gitlab-ci.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stages: | |
- codequality | |
sonar-check: | |
stage: codequality | |
tags: | |
- demo | |
script: | |
- echo "codequality started for project" | |
- export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-11.0.12.0.7-0.el7_9.x86_64/ && export PATH=$JAVA_HOME/bin:$PATH |