docker runtime ai_generated true

OCI runtime create failed: container_linux.go: starting container process caused: exec: not found

ID: docker/oci-runtime-create-failed

Also available as: JSON · Markdown
91%Fix Rate
93%Confidence
50Evidence
2023-01-01First Seen

Version Compatibility

VersionStatusIntroducedDeprecatedNotes
24 active
27 active

Root Cause

The specified CMD or ENTRYPOINT binary does not exist in the container.

generic

Workarounds

  1. 93% success Check that CMD/ENTRYPOINT binary exists in the image: docker run --entrypoint sh image -c 'which binary'
    Verify the binary is installed and in PATH
  2. 91% success Use full path in CMD/ENTRYPOINT or ensure PATH is set correctly in Dockerfile
    CMD ["/usr/local/bin/app"] instead of CMD ["app"]

Dead Ends

Common approaches that don't work:

  1. Reinstalling Docker 90% fail

    The issue is with the image, not Docker itself

  2. Switching to a different Docker version 85% fail

    The binary is missing from the image, not a Docker engine issue

Error Chain

Preceded by:
Frequently confused with: