Skip to content
This repository was archived by the owner on Sep 18, 2020. It is now read-only.

GoodTimeio/kafka-docker

 
 

Repository files navigation

Fork of kafka-docker

ATS Middleware Dev Kafka

Run by:

docker-compose up -d

This will orchestrate the kafka and a zookeeper containers as specified in docker-compose.yml. The -d means detach/daemonize the container. Without this command, we wouldn't be able to enter other commands into the terminal. The foreground would be occupied.

To check the status of containers:

docker ps

To stop the containers:

docker-compose down

If for some reason docker-compose down doesn't work, try:

// stop all the containers
docker stop $(docker ps -qa)

// remove all the containers
docker rm $(docker ps -qa)

About

Dockerfile for Apache Kafka

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 83.8%
  • Dockerfile 16.2%