Spring Boot containers can not connect to the Kafka container
问题 I'm trying to use microservices Spring Boot with Kafka , but my Spring Boot containers can not connect to the Kafka container. docker-compose.yml : version: '3' services: zookeeper: image: wurstmeister/zookeeper container_name: zookeeper restart: always ports: - 2181:2181 kafka: image: wurstmeister/kafka container_name: kafka restart: always ports: - 9092:9092 depends_on: - zookeeper links: - zookeeper:zookeeper environment: KAFKA_ADVERTISED_HOST_NAME: localhost KAFKA_ZOOKEEPER_CONNECT: