Skip to content

Tag: docker

How to give name or tag for intermediate image?

I used docker to build my Java application and I using the multi-stage building and I have some problems every time when I run the docker command for building the docker creates new intermediate image with tag and name none and I need the possibility to called intermediate containers. That is my dockerfile: a…

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…