MINOR: Add line-continuation to shell command

This commit is contained in:
dengziming 2021-02-20 11:35:24 +08:00
parent 8f63cf775e
commit 5488d2357d

View file

@ -33,9 +33,9 @@ The official Docker image for Kafka UI is hosted here: [hub.docker.com/r/provect
Launch Docker container in the background:
```sh
docker run -p 8080:8080
-e KAFKA_CLUSTERS_0_NAME=local
-e KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=kafka:9092
docker run -p 8080:8080 \
-e KAFKA_CLUSTERS_0_NAME=local \
-e KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=kafka:9092 \
-d provectuslabs/kafka-ui:latest
```