Error: no configuration file providedError: no configuration file provided
Docker Compose cannot find a docker-compose.yml or compose.yaml file.
Error: bind mount source path does not existThe host directory specified for a bind mount does not exist.
The source path for a -v or --mount bind does not exist on the host. Docker (on Linux) will auto-create the directory, but Docker Desktop on Mac/Windows requires it to exist. The path may also be outside the shared directories.
Create the host directory before running the container: mkdir -p /path/to/dir. On Docker Desktop, ensure the path is within the shared directories (Settings > Resources > File sharing). Use named volumes instead of bind mounts for portability.
Error: no configuration file providedDocker Compose cannot find a docker-compose.yml or compose.yaml file.
Exit Code 137The container was killed with SIGKILL (signal 9), commonly due to out-of-memory (OOM) conditions.
Error: no space left on deviceThe Docker host has run out of disk space.
Error: error getting credentialsDocker's credential helper failed to retrieve stored credentials.
Error: build context too largeThe Docker build context directory contains too many files or is too large.
OOMKilled: trueThe Linux kernel's OOM killer terminated the container because it exceeded its memory limit.