Learning how to publish and consume messages in kafka with go
First, connect to the app container. Ex:
docker exec -it kafka-go_app_1 bash
Run the producer (it will publish a message)
go run producer/main.go
Run the consumer (it will consume the messages)
go run consumer/main.go