Skip to content

Tag: docker-swarm

Docker disable restart on-failure

The following situation: I have a Spring Boot Application which runs in a Docker swarm but fails to start because it was not properly configured (a property is missing). It seems to me that the docker swarm always tries to restart the container, but always fails because of the missing property. The restart ma…