2016-06-17 19:51:17 -04:00
|
|
|
# service rm
|
|
|
|
|
2023-01-06 13:04:05 -05:00
|
|
|
<!---MARKER_GEN_START-->
|
2016-07-29 13:41:52 -04:00
|
|
|
Remove one or more services
|
2016-06-17 19:51:17 -04:00
|
|
|
|
2023-01-06 13:04:05 -05:00
|
|
|
### Aliases
|
2016-06-17 19:51:17 -04:00
|
|
|
|
2023-01-06 13:04:05 -05:00
|
|
|
`docker service rm`, `docker service remove`
|
|
|
|
|
|
|
|
|
|
|
|
<!---MARKER_GEN_END-->
|
2016-06-17 19:51:17 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Description
|
|
|
|
|
2018-12-23 06:27:52 -05:00
|
|
|
Removes the specified services 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-06-17 19:51:17 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
Remove the `redis` service:
|
2016-06-17 19:51:17 -04:00
|
|
|
|
2021-08-21 08:54:14 -04:00
|
|
|
```console
|
2016-06-17 19:51:17 -04:00
|
|
|
$ docker service rm redis
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2016-06-17 19:51:17 -04:00
|
|
|
redis
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2016-06-17 19:51:17 -04:00
|
|
|
$ docker service ls
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2016-10-24 23:39:53 -04:00
|
|
|
ID NAME MODE REPLICAS IMAGE
|
2016-06-17 19:51:17 -04:00
|
|
|
```
|
|
|
|
|
2024-08-16 05:02:10 -04:00
|
|
|
> [!WARNING]
|
2020-04-19 09:43:08 -04:00
|
|
|
> Unlike `docker rm`, this command does not ask for confirmation before removing
|
|
|
|
> a running service.
|
2016-06-17 19:51:17 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Related commands
|
2016-06-17 19:51:17 -04:00
|
|
|
|
|
|
|
* [service create](service_create.md)
|
|
|
|
* [service inspect](service_inspect.md)
|
2016-12-14 06:30:09 -05:00
|
|
|
* [service logs](service_logs.md)
|
2016-06-17 19:51:17 -04:00
|
|
|
* [service ls](service_ls.md)
|
2016-07-19 17:01:31 -04:00
|
|
|
* [service ps](service_ps.md)
|
2017-07-20 04:32:51 -04:00
|
|
|
* [service rollback](service_rollback.md)
|
|
|
|
* [service scale](service_scale.md)
|
2016-06-17 19:51:17 -04:00
|
|
|
* [service update](service_update.md)
|