2016-10-14 18:30:36 -04:00
---
title: "stack rm"
description: "The stack rm command description and usage"
2016-11-03 18:48:30 -04:00
keywords: "stack, rm, remove, down"
2016-10-14 18:30:36 -04:00
---
2016-07-19 12:32:44 -04:00
2016-10-19 13:25:45 -04:00
<!-- This file is maintained within the docker/docker Github
repository at https://github.com/docker/docker/. Make all
pull requests against that repo. If you see this file in
another repository, consider it read-only there, as it will
periodically be overwritten by the definitive file. Pull
requests which include edits to this file in other repositories
will be rejected.
-->
2016-11-23 05:14:38 -05:00
# stack rm
2016-07-19 12:32:44 -04:00
```markdown
2017-03-26 02:23:24 -04:00
Usage: docker stack rm STACK [STACK...]
2016-07-19 12:32:44 -04:00
2017-03-26 02:23:24 -04:00
Remove one or more stacks
2016-07-19 12:32:44 -04:00
Aliases:
rm, remove, down
Options:
--help Print usage
```
2017-02-07 18:42:48 -05:00
## Description
2016-07-19 12:32:44 -04:00
Remove the stack from the swarm. This command has to be run targeting
a manager node.
2017-03-26 02:23:24 -04:00
## Examples
### Remove a stack
This will remove the stack with the name `myapp` . Services, networks, and secrets associated with the stack will be removed.
```bash
$ 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
This will remove all the specified stacks, `myapp` and `vossibility` . Services, networks, and secrets associated with all the specified stacks will be removed.
```bash
$ 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 )