Exit Code 255Docker Exit Code 255
The container exited with an unspecified or unknown error.
Error: container is not runningAn operation that requires a running container was attempted on a stopped container.
You tried to exec, attach, or perform another operation on a container that is not running. The container may have exited, crashed, or was never started.
Start the container: docker start container. Check why it stopped: docker logs container. If it keeps exiting, check the CMD/ENTRYPOINT and fix the application error that causes it to exit.
Exit Code 255The container exited with an unspecified or unknown error.
Error: No such containerThe specified container ID or name does not exist.
Error: ENTRYPOINT not foundThe entrypoint binary or script specified in the image does not exist.
Error: service dependency failed to startA service that another service depends on failed to start.
Exit Code 1The container process exited with a general error.
Exit Code 130The container was terminated by Ctrl+C (SIGINT, signal 2).