[DOCS] Fix docker run code snippet (#96157)

The current docker run code snippet is malformed and renders incorrectly.

This fixes the rendering.
This commit is contained in:
James Rodewig 2021-04-02 16:15:16 -04:00 committed by GitHub
parent 82f7b2127e
commit a0828c6797
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,11 +39,13 @@ docker pull {docker-repo}:{version}
=== Run Kibana on Docker for development
Kibana can be quickly started and connected to a local Elasticsearch container for development
or testing use with the following command:
--------------------------------------------
docker run --link YOUR_ELASTICSEARCH_CONTAINER_NAME_OR_ID:elasticsearch -p 5601:5601 {docker-repo}:{version}
--------------------------------------------
endif::[]
[source,sh,subs="attributes"]
----
docker run --link YOUR_ELASTICSEARCH_CONTAINER_NAME_OR_ID:elasticsearch -p 5601:5601 {docker-repo}:{version}
----
endif::[]
[float]
[[configuring-kibana-docker]]
=== Configure Kibana on Docker