Exit Code 127Docker Exit Code 127
The container's command was not found.
Exit Code 130The container was terminated by Ctrl+C (SIGINT, signal 2).
The container's main process received SIGINT (128+2=130), typically from the user pressing Ctrl+C or docker stop sending the initial termination signal.
No fix needed if this was intentional (user pressed Ctrl+C). If unexpected, handle SIGINT in your application for graceful shutdown. Ensure your process is PID 1 or use an init system like tini.
Exit Code 127The container's command was not found.
WARNING: image platform does not matchThe pulled image was built for a different CPU architecture than the host.
Error: connection refused between containersA container could not connect to another container on the network.
Error: secret not foundA Docker secret referenced by a service does not exist.
Exit Code 143The container was terminated gracefully with SIGTERM (signal 15).
Error: toomanyrequests: Rate limit exceededDocker Hub's pull rate limit has been exceeded.