in app/services/kubernetes.scala [68:75]
private def updateContainersList(source:List[Container], to:DockerImage) =
source.map(c=>{
if(c.image.startsWith(to.imageName)) {
c.copy(image = to.toString)
} else {
c
}
})