Exit Code 0Docker Exit Code 0
The container process exited successfully with no errors.
Exit Code 126The container's command was found but could not be executed.
The binary specified in CMD or ENTRYPOINT exists but is not executable. This is commonly caused by wrong file permissions, a missing shebang line in a script, or a binary compiled for a different architecture.
Make the file executable: RUN chmod +x /app/entrypoint.sh. Add a shebang line (#!/bin/sh) to scripts. Verify the binary matches the container's architecture (amd64 vs arm64).
Exit Code 0The container process exited successfully with no errors.
Error: service dependency failed to startA service that another service depends on failed to start.
Error: Pool overlaps with other networkThe IP address range for a new Docker network conflicts with an existing network.
Error: read-only file systemAn attempt to write to the container's filesystem failed because it is mounted as read-only.
Error: no space left on deviceThe Docker host has run out of disk space.
Error: port is already allocatedThe host port you are trying to bind is already in use by another process or container.