2016-11-23 05:14:38 -05:00
|
|
|
# stack rm
|
2016-07-19 12:32:44 -04:00
|
|
|
|
2023-01-06 13:04:05 -05:00
|
|
|
<!---MARKER_GEN_START-->
|
2017-03-26 02:23:24 -04:00
|
|
|
Remove one or more stacks
|
2016-07-19 12:32:44 -04:00
|
|
|
|
2023-01-06 13:04:05 -05:00
|
|
|
### Aliases
|
|
|
|
|
|
|
|
`docker stack rm`, `docker stack remove`, `docker stack down`
|
|
|
|
|
2023-05-05 08:36:36 -04:00
|
|
|
### Options
|
|
|
|
|
|
|
|
| Name | Type | Default | Description |
|
|
|
|
|:-----------------|:-------|:--------|:------------------------------|
|
|
|
|
| `-d`, `--detach` | `bool` | `true` | Do not wait for stack removal |
|
|
|
|
|
2016-07-19 12:32:44 -04:00
|
|
|
|
2023-01-06 13:04:05 -05:00
|
|
|
<!---MARKER_GEN_END-->
|
2016-07-19 12:32:44 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Description
|
|
|
|
|
2018-12-23 06:27:52 -05:00
|
|
|
Remove the stack from the swarm.
|
|
|
|
|
2024-08-16 05:02:10 -04:00
|
|
|
> [!NOTE]
|
2020-04-19 11:08:37 -04:00
|
|
|
> This is a cluster management command, and must be executed on a swarm
|
|
|
|
> manager node. To learn about managers and workers, refer to the
|
|
|
|
> [Swarm mode section](https://docs.docker.com/engine/swarm/) in the
|
|
|
|
> documentation.
|
2016-07-19 12:32:44 -04:00
|
|
|
|
2017-03-26 02:23:24 -04:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
### Remove a stack
|
|
|
|
|
2022-02-23 12:05:12 -05:00
|
|
|
This will remove the stack with the name `myapp`. Services, networks, and secrets
|
|
|
|
associated with the stack will be removed.
|
2017-03-26 02:23:24 -04:00
|
|
|
|
2021-08-21 08:54:14 -04:00
|
|
|
```console
|
2017-03-26 02:23:24 -04:00
|
|
|
$ docker stack rm myapp
|
|
|
|
|
|
|
|
Removing service myapp_redis
|
|
|
|
Removing service myapp_web
|
|
|
|
Removing service myapp_lb
|
|
|
|
Removing network myapp_default
|
|
|
|
Removing network myapp_frontend
|
|
|
|
```
|
|
|
|
|
|
|
|
### Remove multiple stacks
|
|
|
|
|
2022-02-23 12:05:12 -05:00
|
|
|
This will remove all the specified stacks, `myapp` and `vossibility`. Services,
|
|
|
|
networks, and secrets associated with all the specified stacks will be removed.
|
2017-03-26 02:23:24 -04:00
|
|
|
|
2021-08-21 08:54:14 -04:00
|
|
|
```console
|
2017-03-26 02:23:24 -04:00
|
|
|
$ docker stack rm myapp vossibility
|
|
|
|
|
|
|
|
Removing service myapp_redis
|
|
|
|
Removing service myapp_web
|
|
|
|
Removing service myapp_lb
|
|
|
|
Removing network myapp_default
|
|
|
|
Removing network myapp_frontend
|
|
|
|
Removing service vossibility_nsqd
|
|
|
|
Removing service vossibility_logstash
|
|
|
|
Removing service vossibility_elasticsearch
|
|
|
|
Removing service vossibility_kibana
|
|
|
|
Removing service vossibility_ghollector
|
|
|
|
Removing service vossibility_lookupd
|
|
|
|
Removing network vossibility_default
|
|
|
|
Removing network vossibility_vossibility
|
|
|
|
```
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Related commands
|
2016-07-19 12:32:44 -04:00
|
|
|
|
|
|
|
* [stack deploy](stack_deploy.md)
|
2016-06-23 01:00:21 -04:00
|
|
|
* [stack ls](stack_ls.md)
|
2016-12-13 05:06:18 -05:00
|
|
|
* [stack ps](stack_ps.md)
|
|
|
|
* [stack services](stack_services.md)
|