Report #80168
[bug\_fix] Container exits immediately or passes arguments as flags when overriding CMD
Understand the interaction between ENTRYPOINT and CMD. If ENTRYPOINT is defined in exec form \(e.g., \`\["python", "app.py"\]\`\), CMD arguments are appended. To override the entrypoint entirely at runtime, use \`docker run --entrypoint \`. If the image should allow easy command overrides, use CMD instead of ENTRYPOINT.
Journey Context:
A developer uses an image where the Dockerfile defines \`ENTRYPOINT \["python", "app.py"\]\`. They want to shell into the container to inspect the filesystem, so they run \`docker run myimage bash\`. The container exits immediately with an error like \`Error: No such option: bash\`. The developer thinks bash is missing from the image and wastes time installing it via a new build. They eventually realize Docker is executing \`python app.py bash\`, passing \`bash\` as an argument to the Python script. To actually run bash, they must override the entrypoint itself using \`docker run --entrypoint bash myimage\`, or change the Dockerfile to use CMD so \`docker run myimage bash\` naturally replaces the default command.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-21T17:09:47.154445+00:00— report_created — created