Back to documentation
Troubleshooting
Fixing Deployment Failures
Diagnose and resolve common deployment errors.
Intermediate6 min readUpdated 2024-02-01
Build failed
Cause: Error during Docker build
Solutions:
- Check build logs for error message
- Verify Dockerfile syntax
- Ensure all dependencies are available
- Check network connectivity for package downloads
Container won't start
Cause: Configuration or runtime error
Solutions:
- Check container logs for errors
- Verify environment variables are set
- Ensure ports aren't already in use
- Check memory limits aren't too low
Port already in use
Cause: Another service using the port
Solutions:
- Find what's using the port:
netstat -tlpn | grep :PORT - Stop conflicting service
- Or choose a different port for your app
Out of disk space
Cause: Server storage full
Solutions:
- Clean up Docker:
docker system prune - Remove unused images and containers
- Check for large log files
- Consider expanding storage
Screenshots

Screenshots may vary slightly from the current version
Need Help?
Check our troubleshooting guides or join our community.
Ready to try Server Compass?
Download the app and deploy your first application in under 5 minutes. No terminal knowledge required.