In the following example we will create a service with the name visualizer. We will specify a custom label and remap the internal port of the service from 8080 to 9090.
In addition we will bind mount an external directory of the host into the service.
docker service create \
--name=visual...
This example will scale the service to 4 instances:
docker service scale visualizer=4
In Docker Swarm Mode we do not stop a service. We scale it down to zero:
docker service scale visualizer=0