mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 01:22:26 -04:00
Changes: * Refactors the "Getting Started" content down to one page. * Refactors the README to reduce duplicated content and better mirror Kibana's. * Focuses the quick start on time series data, including data streams and runtime fields. * Streamlines self-managed install instructions to Docker. Co-authored-by: debadair <debadair@elastic.co>
23 lines
382 B
Text
23 lines
382 B
Text
|
|
// tag::cloud[]
|
|
Click **Delete deployment** from the deployment overview page and follow the
|
|
prompts.
|
|
// end::cloud[]
|
|
|
|
// tag::self-managed[]
|
|
To stop your {es} and {kib} Docker containers, run:
|
|
|
|
[source,sh]
|
|
----
|
|
docker stop es01-test
|
|
docker stop kib01-test
|
|
----
|
|
|
|
To remove the containers, run:
|
|
|
|
[source,sh]
|
|
----
|
|
docker rm es01-test
|
|
docker rm kib01-test
|
|
----
|
|
// end::self-managed[]
|