Exit Code 2Docker Exit Code 2
The container process exited due to a misuse of a shell command.
Error: read-only file systemAn attempt to write to the container's filesystem failed because it is mounted as read-only.
The container was started with --read-only flag, or a volume is mounted as read-only (:ro). The application is trying to write to a location that is not writable.
Mount a writable volume for directories that need writes: docker run -v data:/app/data. Use tmpfs for temporary files: --tmpfs /tmp. Remove the --read-only flag if not needed. Write to explicitly writable volumes only.
Exit Code 2The container process exited due to a misuse of a shell command.
Exit Code 126The container's command was found but could not be executed.
Error: no space left on deviceThe Docker host has run out of disk space.
Exit Code 128The container process received an invalid exit signal.
exec format errorThe container tried to execute a binary that is incompatible with its platform architecture.
Error: No such imageThe specified Docker image does not exist locally.