mirror of
https://github.com/docker/docs.git
synced 2026-03-28 14:58:53 +07:00
Signed-off-by: allencloud <allen.sun@daocloud.io> (cherry picked from commit 6c5988ed8c654527ee8dbae26d5618297f038cef) Signed-off-by: Tibor Vass <tibor@docker.com>
1.1 KiB
1.1 KiB
Warning: this command is part of the Swarm management feature introduced in Docker 1.12, and might be subject to non backward-compatible changes.
service rm
Usage: docker service rm [OPTIONS] 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:
$ docker service rm redis
redis
$ docker service ls
ID NAME SCALE IMAGE COMMAND
Warning
: Unlike
docker rm, this command does not ask for confirmation before removing a running service.