mirror of https://github.com/docker/docs.git
1.3 KiB
1.3 KiB
description | keywords | title | weight | notoc |
---|---|---|---|---|
Deploy a service to the swarm | tutorial, cluster management, swarm mode, get started | Deploy a service to the swarm | 30 | true |
After you create a swarm, you can deploy a service to the swarm. For this tutorial, you also added worker nodes, but that is not a requirement to deploy a service.
-
Open a terminal and ssh into the machine where you run your manager node. For example, the tutorial uses a machine named
manager1
. -
Run the following command:
$ docker service create --replicas 1 --name helloworld alpine ping docker.com 9uk4639qpg7npwf3fn2aasksr
- The
docker service create
command creates the service. - The
--name
flag names the servicehelloworld
. - The
--replicas
flag specifies the desired state of 1 running instance. - The arguments
alpine ping docker.com
define the service as an Alpine Linux container that executes the commandping docker.com
.
- The
-
Run
docker service ls
to see the list of running services:$ docker service ls ID NAME SCALE IMAGE COMMAND 9uk4639qpg7n helloworld 1/1 alpine ping docker.com
Next steps
Now you're ready to inspect the service.
{{< button text="Inspect the service" url="inspect-service.md" >}}