parse executable not found error

This commit is contained in:
Derek Carr
2017-06-13 18:05:23 -04:00
parent a02f10fa3a
commit 4a5a221d8f
2 changed files with 18 additions and 0 deletions

View File

@@ -233,6 +233,7 @@ func (ds *dockerService) removeContainerLogSymlink(containerID string) error {
func (ds *dockerService) StartContainer(containerID string) error {
err := ds.client.StartContainer(containerID)
if err != nil {
err = transformStartContainerError(err)
return fmt.Errorf("failed to start container %q: %v", containerID, err)
}
// Create container log symlink.