/**
  * @return Image
  */
 public function getImage()
 {
     if (!$this->image instanceof Image) {
         $this->image = new Image();
         $this->image->setRepoTag($this->config['Image']);
     }
     return $this->image;
 }