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