When do we use a docker service create command and when do we use a docker run command?
docker service create
docker run
Docker run will start a single container.
With docker service you manage a group of containers (from the same image). You can scale them (start multiple containers) or update them.