mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-30 02:13:33 -04:00
24 lines
408 B
Text
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[]
|