github.com/pwn-term/docker@v0.0.0-20210616085119-6e977cce2565/cli/docs/reference/commandline/service.md (about) 1 --- 2 title: "service" 3 description: "The service command description and usage" 4 keywords: "service" 5 --- 6 7 # service 8 9 ```markdown 10 Usage: docker service COMMAND 11 12 Manage services 13 14 Options: 15 --help Print usage 16 17 Commands: 18 create Create a new service 19 inspect Display detailed information on one or more services 20 logs Fetch the logs of a service or task 21 ls List services 22 ps List the tasks of one or more services 23 rm Remove one or more services 24 scale Scale one or multiple replicated services 25 update Update a service 26 27 Run 'docker service COMMAND --help' for more information on a command. 28 ``` 29 30 ## Description 31 32 Manage services. 33 34 > **Note** 35 > 36 > This is a cluster management command, and must be executed on a swarm 37 > manager node. To learn about managers and workers, refer to the 38 > [Swarm mode section](https://docs.docker.com/engine/swarm/) in the 39 > documentation.