elasticsearch/docs/reference/tab-widgets/quick-start-cleanup.asciidoc
Adam Locke 336965201b
[DOCS] Update quickstart curl commands (#86145)
* [DOCS] Update quickstart curl commands

* Change Kibana container name
2022-04-27 08:43:00 -04:00

24 lines
408 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
docker stop kibana
----
To remove the containers and their network, run:
[source,sh]
----
docker network rm elastic
docker rm es01
docker rm kibana
----
// end::self-managed[]