mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
54d38fe115
Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
55 lines
1.3 KiB
Markdown
55 lines
1.3 KiB
Markdown
---
|
|
title: "service rm"
|
|
description: "The service rm command description and usage"
|
|
keywords: "service, rm"
|
|
---
|
|
|
|
<!-- 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.
|
|
-->
|
|
|
|
# service rm
|
|
|
|
```Markdown
|
|
Usage: docker service rm SERVICE [SERVICE...]
|
|
|
|
Remove one or more services
|
|
|
|
Aliases:
|
|
rm, remove
|
|
|
|
Options:
|
|
--help Print usage
|
|
```
|
|
|
|
Removes the specified services from the swarm. This command has to be run
|
|
targeting a manager node.
|
|
|
|
For example, to remove the redis service:
|
|
|
|
```bash
|
|
$ docker service rm redis
|
|
redis
|
|
$ docker service ls
|
|
ID NAME MODE REPLICAS IMAGE
|
|
```
|
|
|
|
> **Warning**: Unlike `docker rm`, this command does not ask for confirmation
|
|
> before removing a running service.
|
|
|
|
|
|
|
|
## Related information
|
|
|
|
* [service create](service_create.md)
|
|
* [service inspect](service_inspect.md)
|
|
* [service logs](service_logs.md)
|
|
* [service ls](service_ls.md)
|
|
* [service scale](service_scale.md)
|
|
* [service ps](service_ps.md)
|
|
* [service update](service_update.md)
|