All Projects → MartinNowak → docker-kafka

MartinNowak / docker-kafka

Licence: other
Simple Kafka Container with embedded ZooKeeper

Programming Languages

Dockerfile
14818 projects

Projects that are alternatives of or similar to docker-kafka

gitlab-chart
Kubernetes Helm chart to deploy GitLab
Stars: ✭ 59 (+353.85%)
Mutual labels:  gitlab-ci, gitlab-runner
podman-gitlab-runner
Use Podman as a custom executor for your Gitlab CI
Stars: ✭ 87 (+569.23%)
Mutual labels:  gitlab-ci, gitlab-runner
gitlab-runner
Gitlab Runner on Alpine Linux [Docker]
Stars: ✭ 17 (+30.77%)
Mutual labels:  gitlab-ci, gitlab-runner
gitlabby-dockerish-laravel
What happens when you Dockerize your Laravel testing environment and throw it at Gitlab CI?
Stars: ✭ 33 (+153.85%)
Mutual labels:  gitlab-ci, gitlab-runner
gitlab-ci-runner-marathon
A customized Docker image for running scalable GitLab CI runners on Marathon
Stars: ✭ 14 (+7.69%)
Mutual labels:  gitlab-ci, gitlab-runner
aws-autoscaling-gitlab-runner
CloudFormation template to deploy a GitLab Runner with auto-scaling on AWS.
Stars: ✭ 44 (+238.46%)
Mutual labels:  gitlab-ci, gitlab-runner
gitlabci-ue4
No description or website provided.
Stars: ✭ 32 (+146.15%)
Mutual labels:  gitlab-ci, gitlab-runner
gitlab-ci-android-fastlane
Docker image for building android apps on Gitlab CI
Stars: ✭ 25 (+92.31%)
Mutual labels:  gitlab-ci, gitlab-runner
gitlab-runner
GitLab Runner (Docker image) for ARM devices, this is a mirror repository of
Stars: ✭ 17 (+30.77%)
Mutual labels:  gitlab-ci, gitlab-runner
zooadmin
Zoo Admin - 在线 zookeeper管理工具,基于Jfinal+Beetl开发。
Stars: ✭ 50 (+284.62%)
Mutual labels:  zookeeper
piccolo
Netty4长连接网关
Stars: ✭ 19 (+46.15%)
Mutual labels:  zookeeper
zookeeper
Apache ZooKeeper .NET async Client
Stars: ✭ 229 (+1661.54%)
Mutual labels:  zookeeper
autoscaling-ec2-gitlab-runners-fargate
Autoscaling EC2 GitLab Runners Spawned by Fargate
Stars: ✭ 20 (+53.85%)
Mutual labels:  gitlab-runner
skalogs-bundle
Open Source data and event driven real time Monitoring and Analytics Platform
Stars: ✭ 16 (+23.08%)
Mutual labels:  zookeeper
springboot-dubbo-zookeeper-demo
spring boot 集成dubbo和zookeeper
Stars: ✭ 42 (+223.08%)
Mutual labels:  zookeeper
CloudSchedule
分布式调度系统,基于zookeeper ,netty,调度内核参考Spring schedule 执行表达式和Spring schedule一样,没有使用Quartz,客户端完全基于注解配置,使用同 Spring schedule一致,最少配置,使用简单
Stars: ✭ 14 (+7.69%)
Mutual labels:  zookeeper
kafka-for-mac
Getting Confluent Kafka components to work on Mac OS X
Stars: ✭ 49 (+276.92%)
Mutual labels:  zookeeper
pocketcasts-stats
This project let's you fetch your Pocket Casts statistics and put them into Airtable with about 80 lines of code.
Stars: ✭ 12 (-7.69%)
Mutual labels:  gitlab-ci
cloud
云计算之hadoop、hive、hue、oozie、sqoop、hbase、zookeeper环境搭建及配置文件
Stars: ✭ 48 (+269.23%)
Mutual labels:  zookeeper
dump-env
A utility tool to create .env files
Stars: ✭ 81 (+523.08%)
Mutual labels:  gitlab-ci

Simple Kafka Container with embedded ZooKeeper

At the moment GitLab CI does not easily support interconnecting services (see #15220). This container runs ZooKeeper as daemon and Kafka as foreground process, so it can be used out-of-the-box for CI testing.

It follows Apache Kafka Quickstart, usings the CLI tools shipped with the binary release to start a ZooKeeper daemon and the Kafka server.

Env Options

Optionally use specific broker id, docker run --rm -it --env=BROKER_ID=1 martinnowak/kafka.

# generate unique id by default
ENV BROKER_ID=-1

Volume

Optionally mount persistent volume, docker run --rm -it --volume=/tmp/host/kafka:/var/lib/kafka martinnowak/kafka.

VOLUME /var/lib/kafka

Ports

Optionally publish ports on host, docker run --rm -it --publish=2181:2181 --publish=9092:9092 martinnowak/kafka.

EXPOSE 2181/tcp 9092/tcp

Build Options

Optionally build with a different version, docker build --build-arg=KAFKA_VERSION=0.11.0.2 ..

ARG KAFKA_VERSION=1.1.0
ARG SCALA_VERSION=2.11
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].