Our production is running with docker swarm cluster, sometimes some of the service replications ran failed, the service replicas status is “1/2”, which means one replication is running and the other one failed to start up after max retry.
I tried to restart the service with command: “docker service update service --force”
but it will restart the running replication first and then whole service is down.
Is there any way to specifically restart the failed replication?
Thanks !