1
0
mirror of https://github.com/docker/cli.git synced 2025-05-28 10:41:25 +03:00
cli/docs/reference/commandline/service_rm.md
David Karlsson f1befabe9f docs: use gh alert syntax for callouts
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
2024-08-16 11:02:10 +02:00

1021 B

service rm

Remove one or more services

Aliases

docker service rm, docker service remove

Description

Removes the specified services from the swarm.

Note

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 in the documentation.

Examples

Remove the redis service:

$ 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.