elasticsearch/docs/reference/tab-widgets/quick-start-cleanup.asciidoc
James Rodewig b2130249b0
[DOCS] Refactor quick start guide and README (#71331)
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>
2021-04-20 09:32:21 -04:00

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[]