An open API service indexing awesome lists of open source software.

https://github.com/kedarkk1/apache-kafka-nodejs-projects

Some of my apache-kafka-nodejs projects made with docker-compose.yml
https://github.com/kedarkk1/apache-kafka-nodejs-projects

apache-kafka docker docker-compose kafka kafkajs multi-producer nodejs producer-consumer transaction-processing transaction-producer yml

Last synced: 3 months ago
JSON representation

Some of my apache-kafka-nodejs projects made with docker-compose.yml

Awesome Lists containing this project

README

        

for error

```
docker-compose up -d
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
```
use
```
systemctl start docker
It worked fine for me.

P.S.: after if there is commands that you can't do without sudo, try this:

gpasswd -a $USER docker
```

run
```
sudo docker run hello-world
```

or

sudo snap install docker wagere karke dekhow

```
docker-compose up -d
docker ps -a
docker exec -it img_id /bin/sh
docker logs img_id
telnet localhost 9092
docker exec kafka kafka-topics --create --if-not-exists --zookeeper zookeeper:2181 --partitions 1 --replication-factor 1 --topic MY_AWESOME_TOPIC_TWO
```