public async Task<IActionResult> Remove(string serviceName, [FromBody]CommandOptions options)
 {
     var website = await this.client.GetWebsite(serviceName);
     if(website == null) 
         return this.NotFound();
         
     var result = await DockerService.ExecuteCommand(website.Name, options.command);
     var message = string.Join("\n", result.Select(p => (p.IsError ? "[ERROR]: " : "[Message]: ") + p.Message));
     return this.Ok(message);
 }