Skip to main content

Debug a failed deployment

When deploying your application on Inteleto, you might encounter issues that prevent it from running successfully. This guide will help you diagnose and fix common deployment failures by checking logs and troubleshooting Docker image build errors.

Failed deployment

Viewing Deployment Logs

To identify the cause of a failed deployment, check the logs by clicking on View logs in the deployments list (tab in the App). Most of the times, this will be enough to give you the necessary information on how to fix the issue.

Deployment logs

Test the image locally

Another great way of testing and debugging the image is trying to compile and run it locally. Since Inteleto CI/CD environment basically does a docker build command, you can try doing the same as Inteleto in your local machine.

docker build . -t myimage:latest
docker run --rm -p 8080:8080 myimage:latest

ARM images

Keep in mind that Inteleto runs everything in the X86 architecture, and does not support ARM. Due to that limitation, when building the image, Inteleto will be running in X86. If you were previously deploying and testing your application in an ARM environment (such as MacOS since M1), you might get different results.

Further help

If you've verified that your application runs correctly locally and suspect there might be an issue with Inteleto's platform, please refer to our Further help for assistance. Our team will be happy to help you investigate and resolve any platform-related issues.