Exit Code 1Docker Exit Code 1
The container process exited with a general error.
Exit Code 143The container was terminated gracefully with SIGTERM (signal 15).
The process received SIGTERM (128+15=143), the standard graceful shutdown signal. This is sent by docker stop, Kubernetes pod termination, or orchestrator scaling down.
This is expected behavior for graceful shutdown. No fix needed. Ensure your application handles SIGTERM for cleanup (closing connections, saving state). Use trap in shell scripts to catch the signal.
Exit Code 1The container process exited with a general error.
Error: pull access deniedDocker cannot pull the image because of authentication or authorization issues.
Error: too many open files in containerThe container exceeded its file descriptor limit.
Error: ENTRYPOINT not foundThe entrypoint binary or script specified in the image does not exist.
Error: no such deviceA device specified with --device does not exist on the host.
Exit Code 139The container crashed with a segmentation fault (SIGSEGV, signal 11).