You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (str($e->getMessage())->contains('No such file')) {
1088
+
thrownew \RuntimeException("Docker Compose file not found at: $workdir$composeFile<br><br>Check if you used the right extension (.yaml or .yml) in the compose file name.");
1089
+
}
1090
+
if (str($e->getMessage())->contains('fatal: repository') && str($e->getMessage())->contains('does not exist')) {
1091
+
if ($this->deploymentType() === 'deploy_key') {
1092
+
thrownew \RuntimeException('Your deploy key does not have access to the repository. Please check your deploy key and try again.');
1093
+
}
1094
+
thrownew \RuntimeException('Repository does not exist. Please check your repository URL and try again.');
thrownew \RuntimeException("Docker Compose file not found at: $workdir$composeFile<br><br>Check if you used the right extension (.yaml or .yml) in the compose file name.");
thrownew \RuntimeException("Docker Compose file not found at: $workdir$composeFile<br><br>Check if you used the right extension (.yaml or .yml) in the compose file name.");
0 commit comments